/* ==========================================================================
   TrueAdsPro Premium CSS Stylesheet
   Theme: Charcoal/Obsidian Dark Theme with Luxury Gold Gradients & Accent Glows
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    --bg-primary: #07080a;
    --bg-secondary: #0f1013;
    --bg-card: rgba(18, 19, 23, 0.7);
    --bg-card-hover: rgba(26, 27, 33, 0.85);
    --bg-input: rgba(7, 8, 10, 0.7);
    --bg-contact-panel: rgba(18, 19, 23, 0.65);
    
    --gold-primary: #d4af37;
    --gold-secondary: #aa7c11;
    --gold-light: #f3e5ab;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    --gold-glow-strong: 0 0 30px rgba(212, 175, 55, 0.6);
    
    --text-white: #ffffff;
    --text-muted: #9fa0a6;
    --text-muted-light: #cccccc;
    
    --border-color: rgba(212, 175, 55, 0.12);
    --border-hover: rgba(212, 175, 55, 0.35);
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg-primary: #f5f6f9;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(255, 255, 255, 1);
    --bg-input: rgba(255, 255, 255, 0.95);
    --bg-contact-panel: rgba(255, 255, 255, 0.7);
    
    --text-white: #0a0b0d;
    --text-muted: #6b7280;
    --text-muted-light: #2b2e35;
    
    --border-color: rgba(212, 175, 55, 0.22);
    --border-hover: rgba(212, 175, 55, 0.6);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}
.theme-toggle:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}
[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-muted-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1a1c22;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Selection */
::selection {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

li {
    list-style: none;
}

/* --------------------------------------------------------------------------
   2. Ambient Background Glows
   -------------------------------------------------------------------------- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}
.glow-1 {
    top: 5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}
.glow-2 {
    top: 35%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #aa7c11 0%, transparent 75%);
}
.glow-3 {
    bottom: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   3. Helper Classes & Typography
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    color: var(--gold-primary);
}

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.overflow-hidden {
    overflow: hidden;
}

/* Titles */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 60px;
}
.section-header.align-center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: 0.5s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-strong);
}
.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-arrow i {
    transition: var(--transition-fast);
}
.btn-arrow:hover i {
    transform: translateX(5px);
}

.w-100 {
    width: 100%;
}

/* --------------------------------------------------------------------------
   5. Header / Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}
.navbar.scrolled {
    background: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted-light);
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-phone i {
    color: var(--gold-primary);
}
.nav-phone:hover {
    color: var(--gold-primary);
}

.nav-phone-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}
.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-content .badge {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--gold-primary);
    display: inline-block;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-phone-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
}

.phone-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

.phone-link {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-link i {
    color: var(--gold-primary);
}
.phone-link:hover {
    color: var(--gold-primary);
    transform: translateX(3px);
}

.phone-pulse {
    animation: phonePulse 1.8s infinite alternate;
}

@keyframes phonePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); text-shadow: var(--gold-glow); }
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}
.visual-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: floatOverlay 6s ease-in-out infinite;
}
.hero-dashboard-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

@keyframes floatOverlay {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --------------------------------------------------------------------------
   7. About Us Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid #14161a;
    border-bottom: 1px solid #14161a;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-muted-light);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.01) 100%);
    border-left: 4px solid var(--gold-primary);
    padding: 24px 30px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 36px;
    position: relative;
}
.quote-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3.5rem;
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    pointer-events: none;
}
.highlight-quote {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.5;
}

.about-cta-wrapper {
    display: inline-block;
}

/* Stats Cards */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--gold-glow);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 14px;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--transition-normal);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--gold-glow);
}
.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}
.service-card:hover .service-icon {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-bullets li {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.service-bullets li i {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Service visual galleries */
.service-gallery-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    border: 1px solid var(--border-color);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 8, 10, 0.95) 10%, rgba(7, 8, 10, 0.2) 70%, transparent 100%);
    transition: var(--transition-normal);
}
.gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover::after {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.6) 5%, rgba(7, 8, 10, 0.6) 80%);
}

/* --------------------------------------------------------------------------
   9. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid #14161a;
    border-bottom: 1px solid #14161a;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Animated orbital channel graphic */
.why-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.channels-graphic {
    position: relative;
    width: 320px;
    height: 320px;
}

.outer-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    animation: spinClockwise 25s linear infinite;
}

.inner-ring {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-hub {
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gold-glow-strong);
    color: var(--bg-primary);
    font-weight: 800;
}
.center-hub i {
    font-size: 1.8rem;
    margin-bottom: 4px;
}
.center-hub span {
    font-family: var(--font-title);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.channel-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

/* Dots positioned absolutely on the circular track */
.channel-dot.meta {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}
.channel-dot.google {
    bottom: 50%;
    right: 0;
    transform: translate(50%, 50%) rotate(90deg);
}
.channel-dot.youtube {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(180deg);
}
.channel-dot.insta {
    bottom: 50%;
    left: 0;
    transform: translate(-50%, 50%) rotate(270deg);
}

.channel-dot:hover {
    color: var(--bg-primary);
    background: var(--gold-primary);
    box-shadow: var(--gold-glow);
    border-color: var(--gold-primary);
}

@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.why-content {
    max-width: 620px;
}

.why-content .section-badge {
    margin-bottom: 12px;
}

.why-content .section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.benefit-item:hover .benefit-icon {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.benefit-details h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}
.benefit-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. Our Working Process Section
   -------------------------------------------------------------------------- */
.process-section {
    padding: 100px 0;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
    padding-left: 60px; /* offset for timeline line */
}

/* Vertical line */
.timeline-line {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 2px;
    height: 95%;
    background: linear-gradient(to bottom, var(--gold-primary) 0%, rgba(212, 175, 55, 0.1) 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}
.timeline-step:last-child {
    margin-bottom: 0;
}

/* Dot on line */
.timeline-number {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: var(--bg-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-primary);
    z-index: 5;
    box-shadow: var(--gold-glow);
    transition: var(--transition-fast);
}

.timeline-step:hover {
    transform: translateX(10px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--gold-glow);
}
.timeline-step:hover .timeline-number {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-50%) scale(1.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Industries Section
   -------------------------------------------------------------------------- */
.industries-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid #14161a;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
}
.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeAnimation 35s linear infinite;
}

.industry-tag {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: var(--transition-fast);
}
.industry-tag i {
    color: var(--gold-primary);
}
.industry-tag:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

@keyframes marqueeAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   12. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 30px;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.faq-item.active {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 0 30px 24px 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Contact Section & Glassmorphic Form
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid #14161a;
    border-bottom: 1px solid #14161a;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.contact-panel-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-direct-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.direct-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    transition: var(--transition-normal);
}
.direct-card:hover {
    border-color: var(--border-hover);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-2px);
}

.direct-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.direct-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}
.direct-details a {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}
.direct-details a:hover {
    color: var(--gold-primary);
}

.panel-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
}
.panel-tagline i {
    font-size: 1.1rem;
}

/* Glassmorphic Contact Form */
.contact-form-panel {
    background: var(--bg-contact-panel);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.form-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-control {
    background: var(--bg-input);
    border: 1px solid rgba(120, 120, 120, 0.25);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Override option styling */
.form-select option {
    background-color: var(--bg-secondary);
    color: var(--text-white);
}

.form-textarea {
    resize: vertical;
}

.field-error {
    font-size: 0.8rem;
    color: #ff4d4d;
    font-weight: 500;
    display: none;
}

.form-status-alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-status-alert.hide {
    display: none;
}
.form-status-alert.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.1);
}
.form-status-alert.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.1);
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* --------------------------------------------------------------------------
   14. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    padding: 80px 0 0 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-white);
    transition: var(--transition-fast);
}
.footer-socials a:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-menu a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact p i {
    font-size: 1rem;
}
.contact-link:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

/* --------------------------------------------------------------------------
   15. Utilities & Animations
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.1rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

/* Scroll reveal items initial state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   16. Responsive Breakpoints
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-phone-contact {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    
    .phone-link {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-gallery-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-image-wrapper {
        order: 2;
    }
    
    .why-content {
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        gap: 20px;
        padding: 40px;
        transition: var(--transition-normal);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        gap: 16px;
    }
    
    .nav-phone {
        display: none;
    }
    
    .nav-phone-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-title);
        font-weight: 600;
        font-size: 1.25rem;
        margin-top: 20px;
        color: var(--text-white);
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
    }
    .nav-phone-mobile i {
        color: var(--gold-primary);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding-left: 45px;
    }
    
    .timeline-line {
        left: 15px;
    }
    
    .timeline-number {
        left: -53px;
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery-banner {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        padding: 24px 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}
