/* ===== GLOBAL RESET & VARIABLES (identical to home page) ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F7FA;
    color: #0D0D0D;
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}
body.dark-mode {
    background-color: #0F172A;
    color: #f0f0f0;
}
:root {
    --primary: #1E73D8;
    --primary-light: #3BA4FF;
    --dark-navy: #0F172A;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --gold: #C9A646;
    --gold-light: #D4AF37;
    --gold-dark: #9B7C2C;
}
h1, h2, h3, .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: #0D0D0D;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--gold);
    border-radius: 4px;
}
.section-subtitle {
    color: #4B5563;
    margin-bottom: 48px;
    font-size: 1.1rem;
}
body.dark-mode .section-title { color: #FFFFFF; }
body.dark-mode .section-subtitle { color: #9CA3AF; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(30,115,216,0.2);
}
.btn-primary:hover {
    background-color: #004FCC;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: #EAF2FF;
    border-color: #004FCC;
    color: #004FCC;
}
.btn-outline-light {
    border: 1.5px solid white;
    color: white;
    background: transparent;
}
.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--gold);
    border-color: var(--gold);
}
.btn-large { padding: 14px 36px; font-size: 1rem; }

/* ===== HEADER (glass morphism, gold glow) ===== */
header {
    background-color: #0F172A;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,166,70,0.2);
    position: stastic;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s;
}
.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--gold));
}
.logo-text-gold {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(197,166,70,0.4);
    white-space: nowrap;
}
nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-link {
    text-decoration: none;
    color: #E2E8F0;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #3BA4FF);
    transition: width 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ===== CINEMATIC HERO (matching home) ===== */
.hero-cinematic {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }
.hero-overlay-cinematic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
}
.hero-content-cinematic {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: #CBD5E1;
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    z-index: 20;
    cursor: pointer;
}

/* ===== SERVICES SPECIFIC GRIDS & CARDS (premium restyling) ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}
body.dark-mode .service-card {
    background: #1E293B;
    border-color: #334155;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 25px 40px rgba(197,166,70,0.15);
}
.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-card-content {
    padding: 25px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.service-card p {
    color: #4B5563;
    line-height: 1.6;
}
body.dark-mode .service-card p {
    color: #CBD5E1;
}

/* Why Choose Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.benefit-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #E5E7EB;
}
body.dark-mode .benefit-card {
    background: #1E293B;
    border-color: #334155;
}
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.benefit-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.benefit-content {
    padding: 20px;
}
.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}
.step-card {
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    border: 1px solid #E5E7EB;
    transition: 0.3s;
}
body.dark-mode .step-card {
    background: #1E293B;
    border-color: #334155;
}
.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}
.step-number {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin: 0 auto 20px;
}

/* Pricing */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    flex: 1;
    min-width: 260px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: 0.3s;
}
.pricing-card.featured {
    border: 2px solid var(--gold);
    background: #FEFCF5;
}
body.dark-mode .pricing-card {
    background: #1E293B;
}
body.dark-mode .pricing-card.featured {
    background: #2D3B4F;
}
.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 20px 0;
}
.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}
.pricing-card li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.pricing-card li i {
    color: var(--gold);
}

/* ===== PREMIUM FOOTER (matching home exactly) ===== */
.cynux-footer {
    background: #0a0f1a;
    color: #e2e8f0;
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(197,166,70,0.15);
}
.footer-grid-premium {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(197,166,70,0.1);
    border: 1px solid rgba(197,166,70,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}
.social-link:hover {
    background: var(--gold);
    color: #0F172A;
    transform: translateY(-2px);
}
.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}
.footer-links a, .footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
}
.footer-contact li i {
    width: 20px;
    color: var(--gold);
    margin-right: 8px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(197,166,70,0.1);
}
.copyright {
    color: #64748b;
    font-size: 0.85rem;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Fixed theme toggle & back to top */
.theme-toggle-bottom {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: #0F172A;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 99;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hamburger { display: block; }
    nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: #0F172A;
        padding: 100px 25px;
        transition: 0.3s;
        z-index: 1001;
    }
    nav.active { right: 0; }
    nav ul { flex-direction: column; gap: 25px; }
    .logo-img { height: 60px; }
    .header-flex { padding: 0 15px; }
    .footer-grid-premium {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero-cinematic {
        height: 70vh;
        min-height: 500px;
    }
}
@media (max-width: 480px) {
    .logo-text-gold { font-size: 16px; }
    .hero-title { font-size: 2rem; }
}
.full-width-section { padding: 40px 0; }
.alt-bg { background: #F7F9FC; }
body.dark-mode .alt-bg { background: #1A2536; }