:root {
    /* Light Theme Colors */
    --primary-color: #0FA0CE;
    --primary-dark: #0D8AB8;
    --primary-light: #5BC5E8;
    --secondary-color: #4A90E2;
    --accent-color: #7B68EE;

    /* Neutral Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFB;
    --bg-tertiary: #EFF5F8;

    /* Text Colors */
    --text-primary: #1A2332;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #0FA0CE 0%, #5BC5E8 100%);
    --gradient-secondary: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
    --gradient-hero: linear-gradient(135deg, #E0F4FA 0%, #FFFFFF 50%, #F0F9FF 100%);

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(15, 160, 206, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 160, 206, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 160, 206, 0.16);
    --shadow-xl: 0 16px 48px rgba(15, 160, 206, 0.20);

    /* Spacing (8px grid) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --spacing-4xl: 128px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm) !important;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-custom {
    text-decoration: none;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px var(--spacing-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(91, 197, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-bg-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 48px;
    color: var(--primary-light);
    opacity: 0.15;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.particle-5 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.particle-6 {
    top: 40%;
    left: 5%;
    animation-delay: 5s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: var(--spacing-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(15, 160, 206, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: var(--spacing-md);
    animation: slideInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 18px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    max-width: 540px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.btn-hero-primary {
    text-decoration: none;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    text-decoration: none;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 18px var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s infinite ease-in-out;
}

.image-float-card i {
    font-size: 32px;
    color: var(--primary-color);
}

.image-float-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.image-float-card p {
    font-size: 12px;
    margin: 0;
    color: var(--text-secondary);
}

.card-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -40px;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: -30px;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Hero Video */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    position: relative;
    margin: 0 auto var(--spacing-xs);
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Platform Features Section */
.platform-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

/* Capability Row Styles */
.capability-row {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.capability-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f8fbff;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(15, 160, 206, 0.08);
    transition: var(--transition-base);
}

.capability-row:hover .capability-image-container {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 160, 206, 0.12);
}

.capability-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.capability-row:hover .capability-img {
    transform: scale(1.03);
}

.capability-text {
    padding: var(--spacing-lg);
}

.capability-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.capability-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 991px) {
    .capability-row {
        padding: var(--spacing-lg) 0;
        text-align: center;
    }

    .capability-image-container {
        margin-bottom: var(--spacing-lg);
    }

    .capability-title {
        font-size: 28px;
    }
}

.excellence-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.excellence-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .feature-excellence-grid {
        grid-template-columns: 1fr;
    }

    .excellence-image {
        height: 250px;
    }
}

/* Services Section */
.services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: 0;
}

.bento-item {
    position: relative;
}

.bento-large {
    grid-column: span 2;
}

.bento-medium {
    grid-column: span 1;
}

/* Responsive Bento Grid */
@media (max-width: 1199px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

    .bento-medium {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 1;
    }
}

.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

/* Immersive Video Section */
.immersive-video-section {
    position: relative;
    height: 300vh;
    /* Scroll depth */
    background: var(--bg-primary);
}

.video-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.immersive-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Scroll Effect */
    animation: videoReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
}

@keyframes videoReveal {
    from {
        transform: translate(-50%, -50%) scale(1.15);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(26, 35, 50, 0.4) 0%,
            rgba(26, 35, 50, 0.2) 50%,
            rgba(26, 35, 50, 0.4) 100%);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-xl);
    /* Scroll Effect */
    animation: contentReveal linear both;
    animation-timeline: view();
    animation-range: entry 25% exit 75%;
}

@keyframes contentReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    25%,
    75% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

.video-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-content p {
    font-size: 20px;
    opacity: 0.9;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .video-content h2 {
        font-size: 42px;
    }
}


/* Projects Showcase Section */
.showcase-section {
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    background: var(--bg-primary);
}

.showcase-section .section-header {
    margin-bottom: 0;
}



.showcase-item {
    padding: var(--spacing-2xl) 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: visible;
}

.dental-theme {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F0 100%);
}

.health-theme {
    background: linear-gradient(180deg, #FFF5F0 0%, #F0F7FF 100%);
}

.diagnosis-theme {
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}

.showcase-image-container {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    position: relative;
}

.showcase-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.12));
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* .showcase-item:hover .showcase-img {
    transform: scale(1.15) translateY(-10px);
} */

.showcase-text {
    padding: 0;
    position: relative;
}

.project-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 0.8;
    font-family: 'Outfit', sans-serif;
    z-index: 0;
}

.badge-label {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: var(--primary-main);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.showcase-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

.feature-list i {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(15, 160, 206, 0.15);
    border: 1px solid rgba(15, 160, 206, 0.1);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.tech-stack span {
    padding: 8px 16px;
    background: white;
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.tech-stack span:hover {
    background: var(--primary-main);
    color: white;
    transform: translateY(-3px);
}

/* Showcase Mobile Adjustments */
@media (max-width: 991px) {
    .showcase-item {
        padding: var(--spacing-xl) 0;
    }

    .showcase-title {
        font-size: 32px;
    }

    .project-number {
        font-size: 80px;
        top: 0;
        left: 0;
    }

    .feature-excellence-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.rating {
    margin-bottom: var(--spacing-sm);
}

.rating i {
    color: #FFA726;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--bg-tertiary);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.cta-text-side h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.cta-text-side .gradient-text {
    background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text-side p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

/* Contact Form Styling */
.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: var(--spacing-xl);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.form-input {
    width: 100%;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    padding: 16px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 16px rgba(15, 160, 206, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 160, 206, 0.3);
    filter: brightness(1.1);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Success Modal Styling */
#contact-thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

#contact-thank-you-modal.hidden {
    display: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    background: #FFFFFF !important;
    border-radius: 40px;
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: #2E7D32;
    font-size: 40px;
}

.modal-content-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.modal-content-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.whatsapp-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: var(--spacing-lg);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #25D366;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

.btn-modal-close {
    width: 100%;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: #1e293b;
    transform: scale(1.02);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: white;
    font-weight: 500;
}

.info-item i {
    font-size: 20px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand i {
    font-size: 28px;
    color: var(--primary-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    font-family: 'Outfit', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 12px var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.rotate-infinite {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .image-float-card {
        font-size: 14px;
        padding: var(--spacing-xs);
    }

    .card-1,
    .card-2,
    .card-3 {
        left: 0;
        right: auto;
    }

    /* CTA Section Responsive */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .cta-text-side {
        text-align: center;
    }

    .cta-text-side h2 {
        font-size: 40px;
    }

    .cta-text-side p {
        margin-inline: auto;
    }

    .cta-info {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-text-side h2 {
        font-size: 32px;
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .cta-info {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }

    .contact-form-card {
        padding: var(--spacing-md);
    }
}