/* =====================================================
   🎨 DENTAL LUXURY - Dr. Taoufik El Hassani
   Dark Mode Premium avec Accent Doré
   ===================================================== */

/* =====================================================
   CSS VARIABLES - GOLD LUXURY PALETTE
   ===================================================== */
:root {
    /* Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;

    /* Gold Accent Scale */
    --gold-50: #FDFBF7;
    --gold-100: #F9F5E8;
    --gold-200: #F4E5C2;
    --gold-300: #E8D7A0;
    --gold-400: #DCC87E;
    --gold-500: #D4AF37;
    /* Primary Gold */
    --gold-600: #C9A961;
    --gold-700: #B8954A;
    --gold-800: #9A7B3A;
    --gold-900: #7A6129;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    /* Accent Colors */
    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-200) 0%, var(--gold-500) 50%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-primary {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.3));
}

.glass-card {
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.08) 0%,
            rgba(212, 175, 55, 0.04) 50%,
            rgba(212, 175, 55, 0.08) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

/* =====================================================
   PARTICLES BACKGROUND
   ===================================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    25% {
        transform: translate(100px, -100px);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, -200px);
        opacity: 0.6;
    }

    75% {
        transform: translate(-100px, -100px);
        opacity: 0.8;
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,
            var(--gold-600) 0%,
            var(--gold-500) 30%,
            var(--gold-400) 60%,
            var(--gold-500) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.5),
        0 4px 24px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.8),
        0 8px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 18px;
    padding: 20px 40px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.5),
            0 4px 24px rgba(212, 175, 55, 0.4),
            0 0 60px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow:
            0 0 0 2px rgba(212, 175, 55, 0.8),
            0 8px 40px rgba(212, 175, 55, 0.6),
            0 0 80px rgba(212, 175, 55, 0.5);
    }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-container,
.logo-container-footer {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.logo-container:hover,
.logo-container-footer:hover {
    border-color: var(--gold-500);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.logo-image,
.logo-image-footer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.logo-container-footer {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-nav {
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    color: #000000;
    font-weight: 600;
}

.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    opacity: 0;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-300);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 76px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-tertiary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Hero Image Styles */
.hero-image-container {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.sphere {
    width: 400px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.sphere-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.4),
        0 0 120px rgba(212, 175, 55, 0.3),
        inset 0 0 60px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.sphere-ring {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.ring-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
}

.ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    animation-duration: 30s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }

    75% {
        transform: translateY(-30px) rotate(1deg);
    }
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-rotate {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* =====================================================
   SOCIAL PROOF
   ===================================================== */
.social-proof {
    padding: 60px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.social-proof-text {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-quaternary);
    margin-bottom: 32px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-quaternary);
    opacity: 0.6;
    transition: var(--transition-smooth);
    padding: 12px 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--gold-500);
    border-color: rgba(212, 175, 55, 0.3);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    padding: var(--section-padding) 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* =====================================================
   SERVICE CARDS - MODERN DESIGN
   ===================================================== */

/* Service Card - Modern Layout */
.service-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.6),
        0 0 48px rgba(212, 175, 55, 0.25);
}

/* Image Container */
.service-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(10, 10, 15, 0.95) 100%);
    pointer-events: none;
}

/* Service Info Section */
.service-info {
    flex: 1;
    padding: 24px;
    background: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Service Header (Icon + Title) */
.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-icon {
    font-size: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--gold-400);
}

/* Service Description */
.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary);
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Service Features */
.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-300);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-400);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-container {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 4px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.about-image-container:hover {
    transform: scale(1.05);
    border-color: var(--gold-400);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.5),
        0 0 100px rgba(212, 175, 55, 0.3);
}

.about-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-container:hover .about-doctor-image {
    transform: scale(1.1);
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.credential-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.credential-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.credential-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credential-text strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.credential-text span {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    padding: var(--section-padding) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 15px;
    color: var(--text-primary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse-glow 3s ease-in-out infinite;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gold-300);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details strong {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 15px;
    color: var(--text-tertiary);
}

/* Form Styles */
.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-placeholder-footer {
    width: 40px;
    height: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    margin: 0;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-quaternary);
    margin: 0;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-tertiary);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-tertiary);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-500);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-500);
    color: #000000;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-quaternary);
    margin: 8px 0;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1023px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 56px;
    }

    .sphere {
        width: 300px;
        height: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .sphere {
        width: 200px;
        height: 200px;
    }

    .hero-image-container {
        width: 300px;
        height: 300px;
    }

    .about-image-container {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 400px;
    }

    .cta-title {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .particle:nth-child(n+20) {
        display: none;
    }
}

/* =====================================================
   ANIMATIONS & SCROLL EFFECTS
   ===================================================== */
.animate-in {
    opacity: 0;
    animation: fade-in-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

/* =====================================================
   KIJATECH LINK
   ===================================================== */
.kijatech-link {
    color: var(--gold-400);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.kijatech-link:hover {
    color: var(--gold-300);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.kijatech-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
    transition: width 0.3s ease;
}

.kijatech-link:hover::after {
    width: 100%;
}

.legal-link {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link:hover {
    color: var(--gold-400);
}

/* =====================================================
   FOOTER CONTACT INFO & HOURS
   ===================================================== */
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.footer-contact-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-contact-info a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--gold-300);
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    font-size: 14px;
    line-height: 2;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.footer-hours li span {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-map {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-map iframe {
    display: block;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%) brightness(1);
}

.social-handle {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gold-400);
    font-weight: 500;
}

/* =====================================================
   CONTACT MAP
   ===================================================== */
.contact-map {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    display: block;
    filter: grayscale(10%) brightness(0.95);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) brightness(1);
}

.contact-details a {
    color: var(--gold-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold-300);
}

/* =====================================================
   FLOATING PHONE BUTTON
   ===================================================== */
.floating-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    color: #000;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(212, 175, 55, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: pulse-phone 2s ease-in-out infinite;
}

.floating-phone-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow:
        0 12px 48px rgba(212, 175, 55, 0.5),
        0 6px 24px rgba(0, 0, 0, 0.4);
    animation: none;
}

.floating-phone-btn svg {
    flex-shrink: 0;
    animation: ring 1.5s ease-in-out infinite;
}

.floating-phone-btn:hover svg {
    animation: ring-fast 0.5s ease-in-out infinite;
}

.phone-number {
    display: none;
}

@keyframes pulse-phone {

    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(212, 175, 55, 0.4),
            0 4px 16px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow:
            0 8px 32px rgba(212, 175, 55, 0.6),
            0 4px 16px rgba(0, 0, 0, 0.3),
            0 0 0 8px rgba(212, 175, 55, 0.2);
    }
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-15deg);
    }

    20%,
    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@keyframes ring-fast {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-20deg);
    }

    75% {
        transform: rotate(20deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-phone-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}