/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #0b0f19;      /* Deep Slate/Carbon Black */
    --color-bg-secondary: #111827;    /* Slate 900 */
    --color-bg-tertiary: #1f2937;     /* Slate 800 */
    --color-bg-glass: rgba(17, 24, 39, 0.8);
    
    --color-text-main: #f3f4f6;       /* Gray 100 */
    --color-text-muted: #9ca3af;      /* Gray 400 */
    --color-text-dark: #111827;
    
    --color-accent: #f59e0b;          /* Warning Amber */
    --color-accent-hover: #d97706;    /* Darker Amber */
    --color-accent-rgb: 245, 158, 11;
    
    --color-success: #10b981;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-focus: rgba(245, 158, 11, 0.5);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
    
    /* Effects & Animations */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Section Common Layouts */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--color-accent);
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 0 auto 24px auto;
    border-radius: var(--radius-sm);
}

.section-divider.align-left {
    margin-left: 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-call {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--color-accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-call:hover {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
    border-color: var(--color-accent);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item .icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.work-hours {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.main-header.sticky {
    background-color: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-accent);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text-main);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

/* Hamburger */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-menu span {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-text-main);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

/* Hamburger Active State */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    display: flex;
    align-items: center;
    background-image: url('fotograflar/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 15, 25, 0.95) 0%,
        rgba(11, 15, 25, 0.85) 50%,
        rgba(17, 24, 39, 0.7) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.badge {
    background-color: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--color-accent);
    position: relative;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 4px;
}

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

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon-box {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
}

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

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-block;
}

.service-card:hover .service-link {
    color: var(--color-text-main);
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-section {
    background-color: var(--color-bg-primary);
}

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

.features-list {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Visual Panel */
.why-us-visual {
    background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(11, 15, 25, 0.9)), url('fotograflar/cekici-arac.jpg');
    background-size: cover;
    background-position: right center;
    height: 500px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.experience-card {
    background-color: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
}

.exp-years {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.exp-lbl {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    cursor: pointer;
    aspect-ratio: 4 / 5;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.4;
}

.gallery-item-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.9);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: min(900px, 92vw);
    max-height: 85vh;
    margin: 0;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-content figcaption {
    margin-top: 16px;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-text-main);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
}

.step-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(245, 158, 11, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    font-feature-settings: "tnum";
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.step-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
}

/* Info Panel */
.contact-details {
    display: grid;
    gap: 28px;
    margin: 36px 0;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.detail-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.2);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.detail-text a, .detail-text p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 4px;
}

.detail-text a:hover {
    color: var(--color-accent);
}

.map-container {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 24px;
    line-height: 0;
}

/* Form Panel */
.contact-form-panel {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.contact-form {
    display: grid;
    gap: 20px;
}

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

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

.form-group input, .form-group textarea {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-main);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Custom Select Dropdown Styles */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.custom-select-trigger {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-main);
    padding: 12px 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    user-select: none;
}

.custom-select:hover .custom-select-trigger {
    border-color: rgba(245, 158, 11, 0.5);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.select-arrow {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: var(--transition);
    pointer-events: none;
}

.custom-select.open .select-arrow {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.custom-options {
    position: absolute;
    display: block;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition);
    user-select: none;
}

.custom-option:hover {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
}

.custom-option.selected {
    background-color: rgba(245, 158, 11, 0.12);
    color: var(--color-accent);
    font-weight: 600;
}

.form-feedback {
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.form-feedback.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-feedback.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #060910;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-container h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-container h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-container ul {
    display: grid;
    gap: 12px;
}

.footer-container ul a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-container ul a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-designer {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   EMERGENCY FIXED BAR (MOBILE ONLY)
   ========================================================================== */
.mobile-emergency-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d97706; /* Darker amber */
    background: linear-gradient(90deg, #d97706 0%, #f59e0b 100%);
    color: var(--color-text-dark);
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.emergency-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    width: 100%;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emergency-icon-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: pulse-white 1.5s infinite;
}

.emergency-icon-pulse svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Mobile Nav Trigger */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.1rem;
    }

    .main-header {
        height: 70px;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Mobile Nav overlay */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        transition: var(--transition);
        z-index: 99;
        border-top: 1px solid var(--color-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .header-actions .btn-call {
        display: none; /* Hide header btn on tablet, use emergency bar / hero */
    }

    /* Why Us Section */
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-visual {
        height: 380px;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Padding for bottom emergency bar space */
    body {
        padding-bottom: 60px; 
    }

    .top-bar {
        display: none; /* Hide topbar on mobile */
    }

    .mobile-emergency-bar {
        display: block; /* Show fixed bottom bar */
    }

    .hero-section {
        padding-top: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 24px;
        justify-content: space-between;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}
