/* ============================================================
   EXCELLENCE WEB SERVICES — PREMIUM DUAL THEME v4.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════ LIGHT MODE (Default) ═══════════ */
:root {
    --primary-bg: #FAFBFC;
    --surface-1: #FFFFFF;
    --surface-2: #F0F4F8;
    --accent-gold: #C28E0E;
    --accent-amber: #E27B02;
    --accent-light: #DCA520;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(194, 142, 14, 0.22);
    --glass-border-hover: rgba(194, 142, 14, 0.45);
    --glow-sm: 0 4px 25px rgba(194, 142, 14, 0.15);
    --glow-md: 0 8px 35px rgba(194, 142, 14, 0.2);
    --glow-lg: 0 15px 50px rgba(194, 142, 14, 0.15);
    --nav-height: 80px;
    --particle-color: 194, 142, 14;
    --shadow-card: 0 12px 40px rgba(17, 24, 39, 0.08);
    --shadow-massive: rgba(194, 142, 14, 0.15);
}

/* ═══════════ DARK MODE ═══════════ */
[data-theme="dark"] {
    --primary-bg: #020817;
    --surface-1: #0d1b2e;
    --surface-2: #0f2040;
    --accent-gold: #d4af37;
    --accent-amber: #f59e0b;
    --accent-light: #fbbf24;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --glass-bg: rgba(13, 27, 46, 0.55);
    --glass-border: rgba(212, 175, 55, 0.18);
    --glass-border-hover: rgba(212, 175, 55, 0.45);
    --glow-sm: 0 0 15px rgba(212, 175, 55, 0.3);
    --glow-md: 0 0 30px rgba(212, 175, 55, 0.35);
    --glow-lg: 0 0 60px rgba(212, 175, 55, 0.25);
    --particle-color: 212, 175, 55;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-massive: rgba(212, 175, 55, 0.2);
}

/* ═══════════ THEME TRANSITION ═══════════ */
html {
    transition: background-color 0.35s ease;
}

body, body * {
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* RESET */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; }

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 60%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

p { color: var(--text-secondary); }

/* ============ LAYOUT ============ */
.info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px clamp(20px, 5vw, 60px);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

/* ============ MASSIVE HERO TEXT ============ */
.massive-text {
    font-size: clamp(2.8rem, 10vw, 8rem) !important;
    line-height: 0.9 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.04em !important;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 50%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px !important;
    filter: drop-shadow(0 0 40px var(--shadow-massive));
}

.centered-subtitle {
    margin: 0 auto 50px !important;
    font-size: clamp(1rem, 2vw, 1.35rem) !important;
    max-width: 650px !important;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
}

.hero-actions.centered-actions {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lg-btn {
    padding: 18px 50px !important;
    font-size: 1.1rem !important;
}

/* ============ BUTTONS ============ */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
    color: #020817;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-sm);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.primary-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    border-radius: 50px;
}

.primary-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--glow-md); }
.primary-btn:hover::before { opacity: 1; }

.secondary-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.secondary-nav-btn span { color: var(--accent-gold); transition: transform 0.3s; }
.secondary-nav-btn:hover { color: var(--text-primary); }
.secondary-nav-btn:hover span { transform: translateY(5px); }

/* ============ ABOUT SECTION ============ */
.about-content {
    font-size: 1.1rem;
    padding: 50px 40px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-content strong { color: var(--accent-gold); font-weight: 700; }
.about-img { border-radius: 24px; max-width: 100%; }

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.split-content { flex: 1; max-width: 580px; }

.align-left { text-align: left !important; }
.section-header.align-left { margin-bottom: 25px; }
.section-header.align-left .section-desc { margin-left: 0; }

/* ============ FAQ ============ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

/* ============ FOOTER ============ */
.footer-section {
    background: var(--surface-2);
    border-top: 1px solid var(--glass-border);
    padding-bottom: 30px;
}

/* Dark mode footer gets deeper bg */
[data-theme="dark"] .footer-section {
    background: #010810;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p { margin-top: 15px; max-width: 320px; color: var(--text-muted); }

.footer-links h3,
.footer-contact h3 {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--accent-gold); }

.footer-contact p { margin-bottom: 10px; color: var(--text-muted); font-size: 0.95rem; }

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ============ HAMBURGER MENU ============ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 2000;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: left center;
    display: block;
}

.hamburger.toggle span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.hamburger.toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.toggle span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* ============ RESPONSIVE ============ */
@media screen and (max-width: 1024px) {
    .split-section { gap: 40px; }
}

@media screen and (max-width: 900px) {
    .hamburger { display: flex; }
    .desktop-only { display: none !important; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        padding-top: 100px;
        background: rgba(248, 250, 252, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 1500;
    }

    [data-theme="dark"] .nav-links { background: rgba(2, 8, 23, 0.97); }

    .nav-links.nav-active { right: 0; }
    .nav-links a { font-size: 1.4rem !important; }

    .info-container { padding: 80px 20px; }
    .hero-section { min-height: auto !important; padding: 140px 20px 80px; }

    .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }

    .split-section { flex-direction: column; text-align: center; }
    .section-header.align-left { text-align: center !important; }
    .section-header.align-left .section-desc { margin: 0 auto; }

    .footer-content { flex-direction: column; text-align: center; gap: 30px; }
    .footer-brand p { margin: 15px auto 0; }
}

@media screen and (max-width: 480px) {
    .info-container { padding: 60px 16px; }
    .section-title { font-size: 1.8rem; }
    .primary-btn { padding: 13px 28px; font-size: 0.95rem; }
    .lg-btn { padding: 15px 36px !important; }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
#theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 20px;
    border: 1.5px solid var(--glass-border);
    background: var(--surface-2);
    cursor: pointer;
    transition: background 0.35s, border-color 0.35s;
    flex-shrink: 0;
    outline: none;
    display: flex;
    align-items: center;
    padding: 3px;
}

#theme-toggle:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(160, 117, 21, 0.2);
}

[data-theme="dark"] #theme-toggle:hover {
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.theme-toggle-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(22px);
    background: var(--accent-gold);
}