/* Color Variables */
:root {
    --primary-color: #ffc107;
    --secondary-color: #333;
    --white: #ffffff;
    --gray: #f4f4f4;
}

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: rgba(255,255,255,0.02); /* hafif transparan, altında gradient veya görsel ile çalışır */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 24px rgba(17,24,39,0.06);
}

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

/* Logo: görsel + başlık hizalaması */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 6px 18px rgba(17,24,39,0.05);
    padding: 6px;
}

/* Başlığı biraz incelt ve okunurluğu artır */
.logo h1 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin: 0;
}

/* Nav: ensure no markers and consistent link visuals */
nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.6rem; /* biraz daha geniş gap */
    align-items: center;
}
nav ul li {
    margin: 0;
}

/* Nav links: görünür, kontrastlı ve hover efekti */
nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.45rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 180ms ease, color 180ms ease, transform 160ms ease;
    background: transparent;
}

/* Hover / focus */
nav ul li a:hover,
nav ul li a:focus {
    color: var(--secondary-color);
    transform: translateY(-2px);
    outline: none;
}

/* Header scrolled state: arka plan ve link renkleri */
.header.scrolled {
    background: rgba(51, 51, 51, 0.95);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    
}
.header.scrolled nav ul li a {
    color: var(--white);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 90px; /* header yüksekliğini dengelemek için */
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0; /* was -1 — ensure image sits above the hero element background */
    /* preserve the dark overlay */
    filter: none;
}

/* keep the original gradient overlay by using a pseudo-element if needed */
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));
    z-index: 1; /* was 0 — overlay must be above image */
}

/* ensure container content is above overlay */
.hero .container { position: relative; z-index: 2; }

/* Hero text improvements */
.hero h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #f0f0f0);
    background-clip: text;              /* Standart özellik */
    -webkit-background-clip: text;      /* WebKit tarayıcılar için */
    color: transparent;                 /* Fallback for older browsers */
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decor divider styles */
.decor-divider {
    width: 100%;
    height: 25px; 
    background-image: url('../images/border_2.png');
    background-repeat: repeat-x;
    background-size: auto 25px; /* korunan en-boy oranı ile 25px yüksek */
    background-position: 0 50%;
    overflow: hidden;
    position: relative;
    animation: decor-move 60s linear infinite;
    margin-top: -18px;
}

/* Eğer HTML içindeki <img> kaldıysa gizle (fallback olsa display:block bırakabilirsiniz) */
.decor-divider img {
    display: none;
}

/* Keyframes: background-position x ekseninde hareket ettir */
@keyframes decor-move {
    from { background-position: 0 50%; }
    to   { background-position: 100% 50%; } /* sağa doğru kayma */
}

/* Right-to-left decorative divider (between About and Contact) */
.decor-divider-rtl {
    width: 100%;
    height: 25px;
    background-image: url('../images/border_1.png');
    background-repeat: repeat-x;
    background-size: auto 25px;
    background-position: 100% 50%; /* start at right */
    overflow: hidden;
    position: relative;
    animation: decor-move-rtl 60s linear infinite; /* sağdan sola, 25s */
    margin-top: -18px;
}

/* Hide fallback <img> if present */
.decor-divider-rtl img {
    display: none;
}

/* Keyframes: background-position x ekseninde sağdan sola hareket */
@keyframes decor-move-rtl {
    from { background-position: 100% 50%; }
    to   { background-position: 0 50%; } /* sağdan sola kayma */
}

/* Küçük ekranlarda divider'ın yüksekliğini azalt */
@media (max-width: 480px) {
    .decor-divider img { height: 28px; animation-duration: 10s; }
    .hero { padding-top: 84px; }
}

/* Hafif yazı stili iyileştirmeleri hero için */
.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.95;
}

/* CTA buton renkleri ve ikonların renk miras alması (underline kaldırıldı) */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.25rem 3rem;
    margin: 0.6rem;
    margin-top: 1.2rem;
    font-size: 1.15rem;
    border-radius: 80px;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.18s ease;
    color: inherit; /* ikon ve metin için default renk miras al */
}

/* Call button: sarı arka plan üzerinde koyu metin */
.call-button {
    background: var(--primary-color);
    color: #111; /* koyu okunur metin */
}

/* Whatsapp button: yeşil arka plan üzerinde beyaz metin */
.whatsapp-button {
    background: #25d366;
    color: var(--white);
}

/* İkonlar buton rengini miras alsın, underline kesinlikle yok */
.cta-button i,
.cta-button .fa {
    font-size: 1.6rem;
    line-height: 1;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

/* Hover durumlarında renk korunur */
.cta-button:hover,
.cta-button:focus {
    transform: scale(1.05);
    text-decoration: none;
    outline: none;
}

/* Küçük ekran ayarları (koru) */
@media (max-width: 480px) {
    .cta-button {
        padding: 0.9rem 1.6rem;
        font-size: 1.02rem;
    }
    .cta-button i { font-size: 1.2rem; }
    .whatsapp-button i { font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 6rem 1rem 3rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Main content styles */
main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Make entire service card a clickable link when using .service-link */
.service-link {
    display: block;
    color: inherit; /* keep text color */
    text-decoration: none; /* remove underline */
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-link:focus {
    outline: 3px solid rgba(255,193,7,0.25);
    outline-offset: 4px;
}

.service-link:hover, .service-link:focus {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Ensure icons inside links keep their color */
.service-link i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .service-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .service-link {
        padding: 1.5rem;
    }
    
    .service-link i {
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    margin-top: 2rem;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Make the whole contact-item a clickable block-link */
.contact-item {
    display: block; /* anchors become full-block cards */
    color: inherit;
    text-decoration: none;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.18s ease;
}

/* keep hover effect for both div and anchor .contact-item */
.contact-item:hover,
.contact-item:focus {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    text-decoration: none;
}

/* Ensure icon and headings inside keep styles */
.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Accessibility: focus outline for keyboard users */
.contact-item:focus {
    outline: 3px solid rgba(255,193,7,0.18);
    outline-offset: 4px;
}

/* Remove old inner-link rule if present (avoid nested anchors) */
.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.about .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--secondary-color);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,193,7,0.09) 0%, rgba(255,255,255,0.85) 100%);
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(17,24,39,0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hafif etkileşim (isteğe bağlı) */
.about .lead:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17,24,39,0.09);
}

/* Modern footer */
.footer {
    background: linear-gradient(180deg, rgba(255,193,7,0.06), rgba(255,193,7,0.02));
    padding: 3rem 0 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.footer-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: #444;
    max-width: 320px;
    line-height: 1.5;
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Güncellenmiş footer butonları: hover/focus efektleri ve yumuşak geçiş */
.footer-phone,
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--secondary-color);
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(17,24,39,0.05);
    margin-right: 0.5rem;
    margin-top: 0.4rem;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    will-change: transform, background;
}

/* İkonlar varsayılan renkleri */
.footer-phone i,
.footer-whatsapp i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 180ms ease;
}

/* Hover / focus durumları */
.footer-phone:hover,
.footer-phone:focus {
    background: linear-gradient(90deg, var(--primary-color), #ffb300);
    color: #111; /* koyu metin üzerine sarı arka planla okunur */
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(17,24,39,0.12);
}

.footer-phone:hover i,
.footer-phone:focus i {
    color: #111;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus {
    background: #25d366; /* Whatsapp yeşili */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.12);
}

.footer-whatsapp:hover i,
.footer-whatsapp:focus i {
    color: #fff;
}

/* Erişilebilirlik: klavye ile gezinti için görünür odak */
.footer-phone:focus,
.footer-whatsapp:focus {
    outline: 3px solid rgba(255,193,7,0.18);
    outline-offset: 4px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.18s ease;
}

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


.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 1.5rem;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 1rem;
    color: #666;
    font-size: 0.95rem;
    flex-wrap: wrap; 
}

/* Küçük ayar: copyright ve author arasına boşluk ver */
.footer-bottom .copyright {
    margin: 0;
}

/* Author badge / link (küçük düzenlemeler) */
.footer-author {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.95);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(17,24,39,0.05);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
    white-space: nowrap; /* Tek satırda kalmasını istemezseniz kaldırın */
}

.footer-author i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 180ms ease;
}

/* Hover / focus */
.footer-author:hover,
.footer-author:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17,24,39,0.12);
    background: linear-gradient(90deg, var(--primary-color), #ffb300);
    color: #111;
}

.footer-author:hover i,
.footer-author:focus i {
    color: #111;
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .footer-author {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-phone,
    .footer-whatsapp {
        margin-top: 0.4rem;
    }
}

@media (max-width: 600px) {
    nav {
        display: flex;
        flex-direction: column;
    }

    nav a {
        padding: 10px;
        text-align: center;
    }
}



@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero {
        height: 70vh;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 0.9rem 1.6rem;
        font-size: 1.02rem;
    }
    .cta-button i { font-size: 1.2rem; }
    .whatsapp-button i { font-size: 1.3rem; }
}

/* Floating buttons — tam, düzgün ve erişilebilir stil */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1100;
    pointer-events: none; /* container doesn't block clicks */
    align-items: flex-end;
}

.floating-buttons > a,
.floating-buttons > button {
    pointer-events: auto;
}

/* Genel buton görünümü */
.floating-button {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 26px rgba(0,0,0,0.18);
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease, background .18s ease;
    text-decoration: none;
    color: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    background: var(--primary-color);
    display: inline-flex;
}

/* Icon boyutu ve underline kaldırma */
.floating-button i,
.floating-button .fa {
    font-size: 1.45rem;
    line-height: 1;
    display: inline-block;
    text-decoration: none !important;
}

/* Variantlar */
.floating-button.call-button {
    background: var(--primary-color);
    color: #111;
}
.floating-button.whatsapp-button {
    background: #25d366;
    color: #fff;
}

/* Hover / focus */
.floating-button:hover,
.floating-button:focus {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.24);
    outline: none;
}

/* Küçük ekranlar için adaptasyon */
@media (max-width: 768px) {
    .floating-buttons {
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-button {
        width: 52px;
        height: 52px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    .floating-buttons { right: .8rem; bottom: .8rem; }
    .floating-button { width: 56px; height: 56px; }
    .floating-button i { font-size: 1.1rem; }
}

/* Nav toggle (hamburger) */
.nav-toggle {
    display: none; /* default: hidden on desktop */
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1202;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white) !important; /* always visible */
    border-radius: 2px;
    position: relative;
    transition: transform .25s ease, opacity .2s ease, background .18s ease;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after  { top: 7px; }

/* Show hamburger on tablet & smaller */
@media (max-width: 992px) {
    .nav-toggle { display: inline-flex; }

    /* hide desktop nav by default on mobile */
    nav { 
        position: absolute; 
        top: 64px; 
        right: 1rem; 
        z-index: 1200; 
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background: rgba(255,255,255,0.98);
        padding: 0.6rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        min-width: 180px;
    }

    /* When JS toggles .open on nav, show the list */
    nav.open ul { display: flex; }

    /* Override mobile nav link colors for both normal and scrolled states */
    nav ul li a,
    .header.scrolled nav ul li a {
        color: var(--secondary-color);
        padding: 0.6rem 0.9rem;
        display: block;
    }

    /* Active state for mobile nav links */
    nav ul li a.active,
    .header.scrolled nav ul li a.active {
        background: var(--primary-color);
        color: #111;
        transform: none;
    }

    /* Hover states for mobile nav links */
    nav ul li a:hover,
    nav ul li a:focus,
    .header.scrolled nav ul li a:hover,
    .header.scrolled nav ul li a:focus {
        background: var(--gray);
        color: var(--secondary-color);
        transform: none;
    }

    /* Header içindeki container'ı düzenle */
    .header .container {
        padding: 0.5rem 1rem;
    }
    
    nav {
        position: fixed; /* absolute yerine fixed */
        top: 64px;
        right: 0;
        left: 0; /* tam genişlik için */
        padding: 0 1rem;
    }
    
    nav ul {
        width: 100%;
        background: rgba(51, 51, 51, 0.98); /* koyu arka plan */
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    nav ul li a {
        color: #fff !important;
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 4px;
    }
    
    nav ul li a:hover,
    nav ul li a:focus {
        background: var(--primary-color);
        color: #111 !important;
    }
    
    nav ul li a.active {
        background: var(--primary-color);
        color: #111 !important;
    }
}

/* Ensure header.scrolled doesn't hide hamburger (force white) */
.header.scrolled .nav-toggle .hamburger,
.header.scrolled .nav-toggle .hamburger::before,
.header.scrolled .nav-toggle .hamburger::after {
    background: var(--white) !important;
}

/* Active nav link style (desktop & mobile) */
nav ul li a.active {
    background: rgba(255,193,7,0.95);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* Ensure header.scrolled doesn't make active link invisible */
.header.scrolled nav ul li a.active {
    background: rgba(255,193,7,0.95);
    color: #111;
}

@media (max-width: 768px) {
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}
