/* Satoshi Font Family - Local WOFF2 Webfonts */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

:root {
    /* Refined Luxury & Technical Palette */
    --color-primary: #D97706; /* Refined Warm Amber / Bronze */
    --color-primary-hover: #B45309;
    --color-primary-gradient: linear-gradient(135deg, #E07A28 0%, #C26115 100%);
    --color-primary-light: rgba(217, 119, 6, 0.08);
    --color-primary-border: rgba(217, 119, 6, 0.25);
    
    /* WhatsApp Refined Luxury Emerald */
    --color-wa: #059669;
    --color-wa-hover: #047857;
    --color-wa-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
    --color-wa-light: rgba(5, 150, 105, 0.08);

    /* Luxury Dark Backgrounds */
    --color-navy: #080E1A;
    --color-dark-surface: #0F172A;
    --color-dark-card: #141E33;
    --color-bg-light: #F8FAFC;
    --color-card-light: #FFFFFF;
    
    /* Typography Colors */
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;
    --color-text-light-muted: #94A3B8;
    
    /* Borders & Shadows */
    --color-border: #E2E8F0;
    --color-border-subtle: #EDF2F7;
    --color-border-dark: rgba(255, 255, 255, 0.09);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --radius-pill: 9999px;
    
    --shadow-subtle: 0 2px 10px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 10px 30px -4px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --shadow-card-hover: 0 20px 40px -6px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.06);
    --shadow-amber: 0 8px 24px -4px rgba(217, 119, 6, 0.3);
    --shadow-emerald: 0 8px 24px -4px rgba(5, 150, 105, 0.3);
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.68;
    overflow-x: hidden;
    padding-bottom: 74px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

img, svg {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    background: var(--color-navy);
    color: #FFFFFF;
    padding: 10px 16px;
    z-index: 1000;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Vector Decorative Patterns */
.bg-pattern-dots {
    background-image: radial-gradient(rgba(15, 23, 42, 0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.bg-pattern-grid-dark {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Top Announcement Strip */
.top-bar {
    background: #060B14;
    color: var(--color-text-light-muted);
    font-size: 0.825rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.01em;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E2E8F0;
    font-weight: 500;
}

.top-bar-badge .dot {
    width: 7px;
    height: 7px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light-muted);
    font-weight: 600;
    font-size: 0.825rem;
}

.top-bar-link:hover {
    color: #FFFFFF;
}

/* Header (eOfis Style Clean Luxury Glass) */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    height: 62px;
    width: auto;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 8px 0;
    }
    .brand-logo img {
        height: 50px;
    }
}

/* Desktop Nav */
.main-nav {
    display: none;
    align-items: center;
    gap: 34px;
    list-style: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #334155;
    position: relative;
    padding: 8px 0;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--color-navy);
}

.nav-link.active {
    color: var(--color-navy);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Toggle Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    box-shadow: var(--shadow-subtle);
}

@media (min-width: 992px) {
    .hamburger-btn {
        display: none;
    }
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.hamburger-btn.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #FFFFFF;
}

.hamburger-btn.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #FFFFFF;
}

/* Mobile Slide-in Drawer */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 14, 26, 0.7);
    backdrop-filter: blur(6px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 88vw;
    height: 100%;
    background: #0A101D;
    color: #FFFFFF;
    z-index: 99;
    padding: 28px 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: right var(--transition-smooth);
}

.mobile-nav-drawer.is-open {
    right: 0;
}

/* Animated Close (X) Button inside Drawer */
.mobile-drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.mobile-drawer-close-btn:hover,
.mobile-drawer-close-btn:active {
    background: rgba(217, 119, 6, 0.2);
    border-color: rgba(217, 119, 6, 0.4);
    color: #FBBF24;
    transform: rotate(90deg) scale(1.1);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #E2E8F0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: -0.01em;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-primary);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* =========================================
   PREMIUM BUTTON SYSTEM
========================================= */
.btn {
    font-family: 'Satoshi', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    line-height: 1;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

/* Premium Primary Button (Warm Refined Amber with sheen) */
.btn-primary {
    background: var(--color-primary-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-amber);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(217, 119, 6, 0.4);
    color: #FFFFFF;
}

.btn-primary:hover::after {
    left: 140%;
}

/* Premium WhatsApp Button (Refined Emerald Luxury) */
.btn-whatsapp {
    background: var(--color-wa-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-emerald);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(5, 150, 105, 0.45);
    color: #FFFFFF;
}

/* Premium Dark / Glass Button */
.btn-dark {
    background: #0F172A;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-dark:hover {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Premium Outline Button */
.btn-outline {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    color: var(--color-navy);
    box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* =========================================
   CINEMATIC HERO SECTION (Full Widescreen & Balanced)
========================================= */
.hero-section {
    position: relative;
    background-color: var(--color-navy);
    color: #FFFFFF;
    padding: 100px 0 115px;
    overflow: hidden;
}

/* Atmospheric Widescreen Background with Balanced Gradient */
.hero-bg-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(90deg, rgba(8, 14, 26, 0.88) 0%, rgba(8, 14, 26, 0.7) 48%, rgba(8, 14, 26, 0.25) 100%),
        url('../images/hero-electrician.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-bg-media {
        background-position: 70% center;
        background-image: 
            linear-gradient(180deg, rgba(8, 14, 26, 0.92) 0%, rgba(8, 14, 26, 0.8) 50%, rgba(8, 14, 26, 0.92) 100%),
            url('../images/hero-electrician.jpg');
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 55px 0 60px;
    }
    .hero-bg-media {
        background-position: 65% center;
        background-image: 
            linear-gradient(180deg, rgba(8, 14, 26, 0.94) 0%, rgba(8, 14, 26, 0.85) 50%, rgba(8, 14, 26, 0.96) 100%),
            url('../images/hero-electrician.jpg');
    }
    .hero-title {
        font-size: clamp(1.85rem, 6vw, 2.4rem);
        line-height: 1.22;
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    .hero-cta-group .btn {
        width: 100%;
        min-height: 48px;
    }
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 24px;
    }
}

/* Subtle decorative vector lines in hero */
.hero-vector-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.4), rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

/* =========================================
   AUTHENTIC WORK PHOTO SHAPE FRAMES
========================================= */
.photo-shape-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}

.photo-shape-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(217, 119, 6, 0.4);
}

.photo-shape-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.photo-shape-card:hover img {
    transform: scale(1.03);
}

.photo-shape-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(8, 14, 26, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 2;
}

.photo-shape-badge-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.photo-shape-badge-sub {
    font-size: 0.775rem;
    color: var(--color-text-light-muted);
}

/* Refined Badge Pill (eOfis Style) */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #F8FAFC;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-badge-pill .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    color: #FFFFFF;
    margin-bottom: 22px;
    letter-spacing: -0.035em;
    font-weight: 900;
    line-height: 1.16;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #CBD5E1;
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 680px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

/* Glass Feature Badges Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 36px;
}

.hero-feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 18px;
}

.hero-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: #FBBF24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 0.925rem;
    font-weight: 600;
    color: #F1F5F9;
}

/* =========================================
   SECTIONS & TYPOGRAPHY
========================================= */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
}

.section-tag {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 12px;
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-border);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 2.6rem);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: var(--color-navy);
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.075rem;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================================
   PREMIUM CARDS (eOfis Style)
========================================= */
.card {
    background: var(--color-card-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 34px 30px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(217, 119, 6, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all var(--transition-smooth);
}

.card:hover .card-icon-box {
    background: var(--color-primary-gradient);
    color: #FFFFFF;
    border-color: transparent;
    transform: scale(1.05);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
    font-weight: 400;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 18px;
}

.card-link {
    color: var(--color-navy);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* =========================================
   EMERGENCY CALLOUT CARD
========================================= */
.alert-card {
    background: #FFFDF7;
    border: 1px solid #FDE68A;
    border-left: 4px solid #D97706;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.06);
}

.alert-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #92400E;
    font-weight: 700;
    font-size: 1.05rem;
}

/* =========================================
   ACCORDION
========================================= */
.accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: border-color var(--transition-fast);
}

.accordion-item.is-active {
    border-color: var(--color-primary);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.accordion-item.is-active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-body {
    padding: 0 24px 22px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    display: none;
    font-weight: 400;
}

.accordion-item.is-active .accordion-body {
    display: block;
}

/* =========================================
   PREMIUM CTA BANNER WITH PANEL TEXTURE
========================================= */
.cta-banner {
    background: #080E1A;
    border-radius: var(--radius-xl);
    padding: 56px 44px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px -10px rgba(8, 14, 26, 0.4);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(135deg, rgba(8, 14, 26, 0.94) 0%, rgba(8, 14, 26, 0.85) 50%, rgba(15, 23, 42, 0.75) 100%),
        url('../images/cta-panel-bg.jpg');
    background-size: cover;
    background-position: center right;
    pointer-events: none;
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

/* =========================================
   MOBILE STICKY ACTION BAR
========================================= */
.mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -4px 25px rgba(15, 23, 42, 0.12);
    z-index: 95;
    padding: 10px 16px;
    gap: 12px;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .mobile-sticky-bar {
        display: none;
    }
}

.mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background: #060B14;
    color: var(--color-text-light-muted);
    padding: 80px 0 34px;
    font-size: 0.925rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.875rem;
}

/* =========================================
   WIDE HORIZONTAL SERVICE CARDS (2 COLUMNS)
========================================= */
.services-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 860px) {
    .services-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card-wide {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    padding: 38px 34px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

/* Decorative Geometric Corner Circle & Glow */
.service-card-wide .corner-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(217, 119, 6, 0.02) 60%, transparent 70%);
    border: 1px solid rgba(217, 119, 6, 0.15);
    transition: all var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.service-card-wide .corner-circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px dashed rgba(217, 119, 6, 0.25);
    transition: transform 0.6s ease;
}

.service-card-wide:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(217, 119, 6, 0.35);
}

.service-card-wide:hover .corner-circle {
    transform: scale(1.25);
    background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, rgba(217, 119, 6, 0.05) 60%, transparent 70%);
    border-color: rgba(217, 119, 6, 0.35);
}

.service-card-wide:hover .corner-circle-inner {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Top Accent Line */
.service-card-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 2;
}

.service-card-wide:hover::before {
    opacity: 1;
}

/* Watermark Number */
.service-card-wide .watermark-num {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: 'Satoshi', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 1;
}

.service-card-wide:hover .watermark-num {
    color: rgba(217, 119, 6, 0.08);
    transform: translateX(-6px);
}

.service-card-body {
    position: relative;
    z-index: 2;
}

.service-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
}

.service-card-wide:hover .service-card-icon {
    background: var(--color-primary-gradient);
    color: #FFFFFF;
    transform: scale(1.06);
    box-shadow: var(--shadow-amber);
    border-color: transparent;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--color-navy);
    line-height: 1.25;
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Feature preview pills inside wide card */
.service-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-pill {
    font-size: 0.8rem;
    font-weight: 600;
    background: #F1F5F9;
    color: #475569;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.service-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

/* =========================================
   ANIMATED GLOWING BORDER EFFECT (CodePen raBKVRG Style)
========================================= */
@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: true;
}

@keyframes rotateGlowAngle {
    0% {
        --glow-angle: 0deg;
    }
    100% {
        --glow-angle: 360deg;
    }
}

/* =========================================
   ANIMATED GLOWING BORDER EFFECT (Guaranteed 100% Crisp Frame Beam)
========================================= */
@keyframes rotateBorderBeam {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.glow-border-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: #E2E8F0;
    padding: 2.5px;
    overflow: hidden;
    box-shadow: 0 10px 30px -4px rgba(217, 119, 6, 0.15), var(--shadow-card);
    margin-bottom: 28px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glow-border-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -6px rgba(217, 119, 6, 0.25), var(--shadow-card-hover);
}

.glow-border-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: conic-gradient(
        transparent 0deg,
        transparent 200deg,
        rgba(217, 119, 6, 0.3) 240deg,
        #D97706 265deg,
        #FBBF24 280deg,
        rgba(217, 119, 6, 0.3) 300deg,
        transparent 330deg,
        transparent 360deg
    );
    animation: rotateBorderBeam 4s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.glow-card-inner {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border-radius: calc(var(--radius-lg) - 2px);
    padding: 28px;
    height: 100%;
    width: 100%;
}

.glow-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVE DETAIL & CONTENT LAYOUT GRID
========================================= */
.detail-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 992px) {
    .detail-layout-grid {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
}

/* Grids & Layout Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   340px - 380px ULTRA-KOMPAKT MOBIL DUZELTMELERI
========================================= */
@media (max-width: 480px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

.btn-hero-cta {
    font-size: 0.98rem;
    padding: 12px 24px;
}

@media (max-width: 768px) {
    .hero-cta-group,
    .cta-banner-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 26px !important;
    }
    .btn-hero-cta {
        width: 100% !important;
        min-height: 44px !important;
        padding: 11px 16px !important;
        font-size: 0.92rem !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (max-width: 380px) {
    .brand-logo img {
        height: 44px !important;
    }
    .header-inner {
        padding: 6px 0 !important;
    }
    .header-actions .btn-primary {
        padding: 6px 10px !important;
        font-size: 0.78rem !important;
        gap: 5px !important;
    }
    .hamburger-btn {
        width: 36px !important;
        height: 36px !important;
    }
    .hero-section {
        padding: 40px 0 44px !important;
    }
    .hero-title {
        font-size: 1.55rem !important;
    }
    .hero-subtitle {
        font-size: 0.88rem !important;
        margin-bottom: 20px !important;
    }
    .hero-badge-pill {
        font-size: 0.76rem !important;
        padding: 4px 9px !important;
        max-width: 100% !important;
    }
    .btn-hero-cta {
        font-size: 0.82rem !important;
        padding: 9px 10px !important;
        min-height: 40px !important;
        gap: 6px !important;
    }
    .hero-feature-pill {
        padding: 8px 12px !important;
        font-size: 0.81rem !important;
    }
    .photo-shape-badge {
        padding: 8px 10px !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
    }
    .photo-shape-badge-title {
        font-size: 0.82rem !important;
    }
    .photo-shape-badge-sub {
        font-size: 0.70rem !important;
    }
    .mobile-sticky-bar {
        padding: 6px 8px !important;
        gap: 6px !important;
    }
    .mobile-sticky-bar a {
        padding: 8px 6px !important;
        font-size: 0.82rem !important;
        min-height: 38px !important;
        gap: 5px !important;
    }
}

/* Hayati Güvenlik Uyarısı Kartı Taşma Koruması */
.alert-card {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

@media (max-width: 480px) {
    .alert-card {
        padding: 16px 14px !important;
        margin-bottom: 20px !important;
    }
}

/* Mobilde Taşmayan Esnek Grid Sistemleri */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 860px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* =========================================
   MOBIL DIKEY BOSLUK (PADDING & MARGIN) DARALTMA
========================================= */
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0 !important;
    }
    .section-header {
        margin: 0 auto 24px !important;
    }
    .section-title {
        font-size: 1.50rem !important;
        margin-bottom: 8px !important;
    }
    .section-desc {
        font-size: 0.90rem !important;
        line-height: 1.55 !important;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 30px 0 !important;
    }
    .section-header {
        margin: 0 auto 18px !important;
    }
    .section-tag {
        font-size: 0.72rem !important;
        padding: 3px 10px !important;
        margin-bottom: 5px !important;
    }
    .section-title {
        font-size: 1.38rem !important;
        margin-bottom: 5px !important;
    }
    .section-desc {
        font-size: 0.86rem !important;
        line-height: 1.45 !important;
    }
}
