/* ===== RESET ===== */
:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8bc0;
    --accent-color: #09AFF4;
    --dark-color: #020202;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #121212;
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1140px;
}

/* ===== PRELOADER ===== */
/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F0F0F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: var(--transition);
}

.preloader-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.cube-container {
    margin-bottom: 30px;
    width: 200px; 
    height: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.pulsating-cube {
    width: 150px; 
    height: 150px; 
    animation: cubePulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.7));
    object-fit: contain;
}

@keyframes cubePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.7));
    }
    50% {
        transform: scale(1.15); 
        filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.9));
    }
}


.cube-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; 
    height: 180px; 
    background: radial-gradient(circle at center, 
        rgba(56, 189, 248, 0.4) 0%, 
        rgba(56, 189, 248, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.2);
    }
}


.preloader-content .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 3px;
    margin-top: 10px;
}

.loading-text #percent {
    font-size: 2.5rem; 
    font-weight: bold;
    display: block;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #38BDF8, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.loading-text p {
    margin-top: 1rem;
    font-size: 1.2rem; 
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}


#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}


@media (max-width: 1024px) {
    .cube-container {
        width: 180px;
        height: 180px;
    }
    
    .pulsating-cube {
        width: 140px;
        height: 140px;
    }
    
    .cube-container::before {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .cube-container {
        width: 150px;
        height: 150px;
        margin-bottom: 25px;
    }
    
    .pulsating-cube {
        width: 120px;
        height: 120px;
    }
    
    .cube-container::before {
        width: 140px;
        height: 140px;
    }
    
    .loading-text #percent {
        font-size: 2.2rem;
    }
    
    .loading-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cube-container {
        width: 130px;
        height: 130px;
        margin-bottom: 20px;
    }
    
    .pulsating-cube {
        width: 100px;
        height: 100px;
    }
    
    .cube-container::before {
        width: 120px;
        height: 120px;
    }
    
    .preloader-content .spinner-border {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .loading-text #percent {
        font-size: 2rem;
    }
    
    .loading-text p {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .cube-container {
        width: 110px;
        height: 110px;
    }
    
    .pulsating-cube {
        width: 90px;
        height: 90px;
    }
    
    .cube-container::before {
        width: 100px;
        height: 100px;
    }
    
    .loading-text #percent {
        font-size: 1.8rem;
    }
}

/* ===== HEADER NAVBAR ===== */
.header {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.header.scrolled {
    background: #0F0F0F;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* ===== LOGO ===== */
.logo-img {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

/* ===== LINKS DA NAVBAR  ===== */
.header:not(.scrolled) .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.header:not(.scrolled) .navbar-nav .nav-link:hover,
.header:not(.scrolled) .navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
}

.header:not(.scrolled) .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.header:not(.scrolled) .navbar-nav .nav-link:hover::after,
.header:not(.scrolled) .navbar-nav .nav-link.active::after {
    width: 80%;
    background: #ffffff;
}

/* ===== LINKS ===== */
.header.scrolled .navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.header.scrolled .navbar-nav .nav-link:hover,
.header.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.header.scrolled .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.header.scrolled .navbar-nav .nav-link:hover::after,
.header.scrolled .navbar-nav .nav-link.active::after {
    width: 80%;
}

/* ===== RESPONSIVO MOBILE ===== */
@media (max-width: 767.98px) {
    .logo-img {
        width: 35px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .header:not(.scrolled) .navbar-collapse {
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header:not(.scrolled) .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 10px 15px;
        margin: 5px 0;
        text-align: center;
    }

    .header:not(.scrolled) .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .header:not(.scrolled) .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .header:not(.scrolled) .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        width: 30px;
    }

    .brand-name {
        font-size: 1.2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
        url('../assets/image/hero1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: background-image 0.8s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 200, 255, 0.02) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.hero-title-container {
    margin-bottom: 30px;
}

.title-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(26, 95, 122, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(26, 95, 122, 0);
    }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}


.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0;
    background: linear-gradient(90deg,
            var(--white) 0%,
            var(--secondary-color) 50%,
            var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.title-main {
    display: block;
    font-weight: 800;
    font-size: 4.5rem;
    background: linear-gradient(90deg,
            var(--accent-color) 0%,
            #09AFF4 50%,
            var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}


.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-buttons .btn:hover::before {
    opacity: 0.9;
}

.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn-primary {
    background: transparent;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.4);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-buttons .btn i {
    font-size: 1.1rem;
}

/* ===== HERO SLIDER STYLES ===== */
.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.swiper-button-next.hero-next,
.swiper-button-prev.hero-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--white);
    margin-top: -30px;
    opacity: 0;
    animation: fadeInArrows 0.5s ease 1s forwards;
}

@keyframes fadeInArrows {
    to {
        opacity: 1;
    }
}

.swiper-button-next.hero-next:after,
.swiper-button-prev.hero-prev:after {
    display: none;
}

.swiper-button-next.hero-next i,
.swiper-button-prev.hero-prev i {
    font-size: 1.5rem;
}

.swiper-button-next.hero-next:hover,
.swiper-button-prev.hero-prev:hover {
    background: rgba(0, 180, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.swiper-button-prev.hero-prev {
    left: 30px;
}

.swiper-button-next.hero-next {
    right: 30px;
}

.swiper-pagination.hero-pagination {
    bottom: 40px !important;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 8px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: left 0.5s ease;
}

.swiper-pagination-bullet:hover::before {
    left: 100%;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--accent-color);
}


.slide-counter {
    position: absolute;
    bottom: 40px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: counterPulse 2s infinite;
}

@keyframes counterPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(9, 175, 244, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(9, 175, 244, 0);
    }
}

.current-slide {
    color: var(--accent-color);
    min-width: 30px;
    text-align: center;
}

.counter-separator {
    color: rgba(255, 255, 255, 0.5);
}

.total-slides {
    min-width: 30px;
    text-align: center;
}


.swiper-slide {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PARTICLE ===== */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fadeInCanvas 1s ease 0.5s forwards;
}

@keyframes fadeInCanvas {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-section .container {
    position: relative;
    z-index: 4;
}

.hero-bg-overlay {
    z-index: 1;
}


.about-section,
.services-section,
.pricing-section,
.testimonials-section,
.contact-section,
.cta-section {
    position: relative;
    overflow: hidden;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: #121212;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    background: linear-gradient(90deg, #020617 0%, #020B2A 100%);
    color: #ffffff;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(26, 95, 122, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 139, 192, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section .section-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.about-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #38BDF8;
    border-radius: 2px;
}

.about-text {
    color: #94A3B8;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
}

.about-features .feature-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.about-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.about-features .feature-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(45, 139, 192, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
}

.why-section {
    background: #121212;
    color: #ffffff;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
    border-color: rgba(26, 95, 122, 0.1);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(26, 95, 122, 0.2);
}

.why-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(26, 95, 122, 0.05);
    margin-bottom: 1rem;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
    font-family: 'Poppins', sans-serif;
}

.why-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

.why-description {
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* =====PLANS SECTION ===== */
.pricing-section {
    background: linear-gradient(90deg, #020617 0%, #020B2A 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 680px;
}


.pricing-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #38BDF8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}


.pricing-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}


.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #94A3B8;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
}


.see-all-top-container {
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 10;
}

.see-all-top-btn {
    display: inline-flex;
    align-items: center;
    background: #38BDF8;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-top-btn:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
    color: #FFFFFF;
}


.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    align-items: stretch;
}


.pricing-card-standard {
    background: transparent;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card-standard:hover {
    border-color: #38BDF8;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.pricing-card-icon {
    color: #38BDF8;
    font-size: 28px;
    margin-bottom: 16px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricing-plan-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.pricing-price-container {
    margin: 16px 0;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 1;
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #94A3B8;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex-grow: 1;
    width: 100%;
}

.pricing-features-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #CBD5E1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.pricing-features-list li::before {
    content: "✓";
    color: #38BDF8;
    margin-right: 8px;
    font-weight: bold;
}


.pricing-btn-standard {
    background: transparent;
    border: 1px solid #38BDF8;
    color: #38BDF8;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.pricing-btn-standard:hover {
    background: #38BDF8;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

/* ===== PREMIUM CARD  ===== */
.pricing-card-premium {
    background: #38BDF8;
    border: none;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(56, 189, 248, 0.3);
}

.price-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.pricing-card-premium:hover {
    transform: translateY(-25px);
    box-shadow: 0 30px 60px rgba(56, 189, 248, 0.4);
}


.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #FFFFFF;
    color: #38BDF8;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}


.pricing-card-premium .pricing-card-icon,
.pricing-card-premium .pricing-plan-name,
.pricing-card-premium .pricing-amount,
.pricing-card-premium .pricing-period,
.pricing-card-premium .pricing-features-list li {
    color: #FFFFFF;
}

.pricing-card-premium .pricing-features-list li::before {
    color: #FFFFFF;
    opacity: 0.9;
}

.pricing-card-premium .pricing-period {
    opacity: 0.8;
}


.pricing-card-premium .pricing-amount {
    font-size: 40px;
    font-weight: 800;
}


.pricing-btn-premium {
    background: #FFFFFF;
    border: none;
    color: #38BDF8;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    width: 100%;
    max-width: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.pricing-btn-premium:hover {
    background: #F8FAFC;
    color: #0EA5E9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .pricing-card-premium {
        transform: translateY(0);
        order: -1;
    }

    .pricing-card-premium:hover {
        transform: translateY(-5px);
    }

    .pricing-card-standard,
    .pricing-card-premium {
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-main-title {
        font-size: 28px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        align-items: stretch;
    }

    .see-all-top-container {
        position: relative;
        right: auto;
        top: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .pricing-card-standard,
    .pricing-card-premium {
        height: auto;
        min-height: 480px;
    }

    .pricing-card-premium {
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .pricing-main-title {
        font-size: 24px;
    }

    .pricing-subtitle {
        font-size: 14px;
    }

    .pricing-amount {
        font-size: 28px;
    }

    .pricing-card-premium .pricing-amount {
        font-size: 36px;
    }
}


.discount-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.old-price {
    text-decoration: line-through;
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.discount-tag {
    background-color: #10B981;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
}


.pricing-price-container {
    margin: 16px 0;
    text-align: center;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-amount .currency {
    font-size: 24px;
    margin-right: 4px;
}

.pricing-amount .amount {
    font-size: 48px;
    font-weight: 800;
}

.pricing-amount .period {
    font-size: 16px;
    margin-left: 4px;
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #94A3B8;
    margin-top: 8px;
}

.total-period-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #94A3B8;
    margin: 8px 0 16px;
}


.savings-badge {
    border: 1px solid #10B981;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #10B981;
    width: fit-content;
    margin: 16px auto;
    background: rgba(16, 185, 129, 0.1);
}


.pricing-card-premium .old-price {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-premium .discount-tag {
    background-color: rgba(255, 255, 255, 0.9);
    color: #38BDF8;
}

.pricing-card-premium .total-period-text {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-premium .savings-badge {
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}


.pricing-features-list {
    margin: 24px 0;
    flex-grow: 1;
}

.pricing-features-list li {
    display: block !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding-left: 30px !important;
    position: relative;
}

.pricing-features-list li::before {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    margin-right: 10px !important;
}

.plan-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.5;
    margin-top: 8px;
    text-align: center;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-premium .plan-description {
    color: rgba(255, 255, 255, 0.9);
}


.pricing-footer-note {
    color: #94A3B8;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 1199.98px) {
    .pricing-amount {
        font-size: 40px;
    }

    .pricing-amount .amount {
        font-size: 40px;
    }

    .pricing-card-premium .pricing-amount {
        font-size: 44px;
    }

    .pricing-card-premium .pricing-amount .amount {
        font-size: 44px;
    }
}

@media (max-width: 767.98px) {
    .pricing-amount {
        font-size: 36px;
    }

    .pricing-amount .amount {
        font-size: 36px;
    }

    .pricing-card-premium .pricing-amount {
        font-size: 40px;
    }

    .pricing-card-premium .pricing-amount .amount {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .pricing-amount {
        font-size: 32px;
    }

    .pricing-amount .amount {
        font-size: 32px;
    }

    .pricing-card-premium .pricing-amount {
        font-size: 36px;
    }

    .pricing-card-premium .pricing-amount .amount {
        font-size: 36px;
    }

    .discount-badge-container {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('../assets/image/depoimentos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.testimonials-section .section-header {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.3);
    backdrop-filter: none;
}

.testimonial-card:hover .testimonial-text {
    color: #FFFFFF;
}


.testimonial-card:hover .testimonial-author h5 {
    color: var(--white);
}

.testimonial-card:hover .testimonial-author p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card:hover .testimonial-author img {
    border-color: var(--white);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    transition: var(--transition);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.testimonial-author p {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}


@media (max-width: 768px) {
    .testimonials-section {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.98);
    }

    .testimonial-card:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
}


@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 80px 0;
    }
}


@media (max-width: 575.98px) {
    .testimonials-section {
        background-position: center;
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}


@supports (-webkit-touch-callout: none) {
    .testimonials-section {
        background-attachment: scroll;
    }
}

/* ===== PORTFOLIO SECTION  ===== */
.portfolio-section {
    background: linear-gradient(90deg, #020617 0%, #020B2A 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}


.sec-heading {
    text-align: left;
    margin-bottom: 50px;
}

.content-area {
    text-align: left;
    max-width: 700px;
}

.pre-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #38BDF8;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.hollow-text {
    color: #38BDF8;
    position: relative;
    font-weight: 700;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 0;
}


.cta-area {
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: #38BDF8;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
    color: #FFFFFF;
}

.cta-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}


.portfolio-btn-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.portfolio-btn:hover {
    color: #38BDF8;
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.1);
}

.portfolio-btn.active {
    background: #38BDF8;
    color: #FFFFFF;
    border-color: #38BDF8;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}


.portfolio-group {
    margin-top: 30px;
    overflow: visible;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 300px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    min-height: 300px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: none;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(2, 6, 23, 0.9) 0%,
            rgba(2, 6, 23, 0.7) 50%,
            transparent 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-info {
    opacity: 1;
    transform: translateY(0);
}

.item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.portfolio-info i {
    color: #38BDF8;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-info i {
    transform: translateX(5px);
}

/* Efeito de hover nas imagens (zoom) */
.portfolio-img-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 70%,
            rgba(2, 6, 23, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-img-link::after {
    opacity: 1;
}

/* Responsividade */
@media (min-width: 1400px) {
    .portfolio-img-link {
        height: 350px;
        min-height: 350px;
    }
}

@media (min-width: 1600px) {
    .portfolio-img-link {
        height: 400px;
        min-height: 400px;
    }
    
    .portfolio-card {
        min-height: 400px;
    }
}

@media (min-width: 1920px) {
    .portfolio-img-link {
        height: 450px;
        min-height: 450px;
    }
    
    .portfolio-card {
        min-height: 450px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1400px) {
    .portfolio-item {
        height: 100%;
    }
}


.portfolio-img {
    max-height: none !important;
}


.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
    overflow: visible;
}

@media (max-width: 1199.98px) {
    .portfolio-img-link {
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .portfolio-section {
        padding: 80px 0;
    }

    .sec-heading {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .content-area {
        text-align: center;
    }

    .title {
        font-size: 32px;
    }

    .portfolio-btn {
        padding: 6px 16px;
        font-size: 15px;
    }

    .portfolio-img-link {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .title {
        font-size: 28px;
    }

    .portfolio-btn-list {
        gap: 12px;
    }

    .portfolio-btn {
        padding: 6px 14px;
        font-size: 14px;
    }

    .portfolio-img-link {
        height: 220px;
    }

    .item-title {
        font-size: 16px;
    }

    .portfolio-info {
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .portfolio-section {
        padding: 50px 0;
    }

    .title {
        font-size: 24px;
    }

    .pre-title {
        font-size: 12px;
    }

    .portfolio-btn-list {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .portfolio-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .portfolio-img-link {
        height: 200px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.contact-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 122, 0.25);
    outline: none;
}

.contact-section .form-control::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.contact-section textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-section button[type="submit"] {
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.contact-section button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 95, 122, 0.3);
}

.text-muted {
    color: #10B981 !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background:
        linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 11, 42, 0.9)),
        url('../assets/image/background_footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #38BDF8, transparent);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}


.footer-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}


@media (max-width: 767.98px) {
    .footer-logo {
        height: 40px;
    }
}

.footer-text {
    color: #94A3B8;
    max-width: 300px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    color: #38BDF8;
    transition: var(--transition);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.social-links a:hover {
    background: #38BDF8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
    border-color: transparent;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #09AFF4;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #38BDF8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: #38BDF8;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #94A3B8;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.contact-info i {
    color: #38BDF8;
    margin-right: 10px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    color: #94A3B8;
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

.developer-link {
    color: inherit;
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.developer-link:hover {
    color: #2d8bc0;
    font-weight: 700;
    background-color: rgba(45, 139, 192, 0.1); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(45, 139, 192, 0.2);
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .title-main {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}


@media (max-width: 991.98px) {
    .hero-section {
        padding: 150px 0 100px;
        text-align: center;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .swiper-button-next.hero-next,
    .swiper-button-prev.hero-prev {
        width: 50px;
        height: 50px;
    }

    .swiper-button-prev.hero-prev {
        left: 15px;
    }

    .swiper-button-next.hero-next {
        right: 15px;
    }

    .slide-counter {
        bottom: 20px;
        right: 15px;
        font-size: 1rem;
        padding: 6px 15px;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .service-card,
    .why-card {
        margin-bottom: 30px;
    }

    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }

    .about-content {
        padding-right: 30px;
        margin-bottom: 3rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }
}


@media (max-width: 767.98px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .swiper-button-next.hero-next,
    .swiper-button-prev.hero-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next.hero-next i,
    .swiper-button-prev.hero-prev i {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .text-md-start {
        text-align: center !important;
    }

    .me-3,
    .me-2,
    .ms-auto {
        margin: 0 !important;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .about-subtitle::after {
        width: 40px;
    }

    .about-features .feature-item {
        padding: 6px 10px;
        font-size: 0.95rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .why-number {
        font-size: 3rem;
    }

    .why-title {
        font-size: 1.3rem;
    }
}


@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-main {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-card,
    .testimonial-card,
    .why-card {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    .d-none-xs {
        display: none !important;
    }

    .img-fluid {
        width: 100%;
        height: auto;
    }

    .swiper-pagination.hero-pagination {
        bottom: 60px !important;
    }

    .slide-counter {
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
        font-size: 0.9rem;
    }
}
