/* NEZAKET NAKLİYAT - Modern CSS Styles */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #0D0D0D; /* main background dark */
    --secondary-color: #ffffff; /* main text color */
    --accent-color: #FF7A18; /* orange accent */
    --dark-color: #0a0a0a;
    --light-color: #1f1f1f;
    --text-color: #ffffff;
    --text-light: #e6e6e6;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --purple: #6B2E8F;
    --yellow: #FF7A18;
    --primary-dark: #081018; /* darker variant for gradients */
}

/* === Services section - visual improvements (appended overrides) === */
.services-section .section-title { color: #ffffff !important; }

.services-section .service-card {
    padding: 2rem 1.6rem !important;
    border-radius: 16px !important;
    border: 2px solid rgba(255,255,255,0.03) !important;
    box-shadow: 0 12px 36px rgba(0,0,0,0.6) !important;
    transition: transform 280ms cubic-bezier(.2,.9,.3,1), box-shadow 280ms ease, border-color 280ms ease !important;
}

.services-section .service-card:hover {
    transform: translateY(-12px) scale(1.01) !important;
    box-shadow: 0 28px 80px rgba(0,0,0,0.74) !important;
    border-color: rgba(255,255,255,0.08) !important;
}

/* Force white text/icons for any remaining dark-styled elements in these sections */
.services-section *,
.why-choose-section *,
.testimonials-section *,
.reviews-section *,
.client-feedback-section * {
    color: #ffffff !important;
    background-color: transparent !important;
}

/* Allow subtle meta text to be slightly muted but readable */
.testimonials-section .meta,
.reviews-section .meta,
.client-feedback-section .meta {
    color: rgba(255,255,255,0.75) !important;
}

.services-section .service-icon {
    width: 72px !important;
    height: 72px !important;
    font-size: 3.2rem !important; /* keep large but slightly adjusted */
    background: rgba(255,255,255,0.02) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    margin: 0 auto 1rem auto !important;
}

/* Ensure the services detail page uses grey cards, black page background and all-white text */
.services-detail-section {
    background: #000000 !important; /* page background black */
    color: #ffffff !important;
    padding: 3rem 0;
}

.service-detail {
    margin-bottom: 1.5rem;
}

.service-detail .service-detail-content {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.service-detail .service-detail-text {
    flex: 1 1 100%;
    background: #2b2b2b !important; /* card grey */
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    border: 1px solid rgba(255,255,255,0.04) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.55) !important;
}

/* Remove image column rules since images/placeholders are removed */
.service-detail .service-detail-image { display: none !important; }

.service-detail .service-detail-image .service-placeholder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    background: transparent !important;
    color: #ffffff !important;
}

.service-badge, .service-placeholder i {
    color: #ffffff !important;
    background: rgba(255,255,255,0.03) !important;
    padding: 0.6rem;
    border-radius: 10px;
}

.service-detail h2, .service-detail h3, .service-detail p, .service-features li {
    color: #ffffff !important;
}

.service-features li i { color: #ffffff !important; margin-right: 0.6rem; }

.service-detail .btn.btn-primary { background: var(--accent-color) !important; color: #ffffff !important; }
.support-buttons .btn { color: #ffffff !important; }

/* Reverse layout on desktop handled by existing .reverse class; ensure spacing stays good */
.service-detail.reverse .service-detail-image { order: 1; }
.service-detail.reverse .service-detail-text { order: 2; }

@media (max-width: 900px) {
    .service-detail .service-detail-content { flex-direction: column; }
    .service-detail .service-detail-text, .service-detail .service-detail-image { width: 100%; }
}

.services-section .service-card:hover .service-icon,
.services-section .service-card:focus-within .service-icon {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.72) !important;
}

.services-section .service-card h3 { color: #ffffff !important; font-weight:700 !important; }
.services-section .service-card p { color: rgba(255,255,255,0.78) !important; }
.services-section .service-link { color: rgba(255,255,255,0.95) !important; font-weight:600 !important; }

/* Selected card outline (like screenshot) */
.services-section .service-card.selected {
    border-color: #ffffff !important;
    box-shadow: 0 30px 90px rgba(0,0,0,0.78), 0 0 0 6px rgba(255,255,255,0.04) inset !important;
}

@media (max-width: 640px) {
    .services-section .service-card { padding: 1.25rem !important; }
    .services-section .service-icon { width: 64px !important; height:64px !important; }
}

/* === WHY / TESTIMONIALS - force dark cards and white text/icons === */
.why-choose-section,
.testimonials-section,
.reviews-section,
.client-feedback-section {
    background: linear-gradient(180deg, #030303 0%, #070707 100%) !important;
    color: #ffffff !important;
}

/* Card style for why-choose items and testimonial cards */
.why-choose-section .why-item,
.testimonials-section .testimonial-card,
.reviews-section .review-card,
.client-feedback-section .card {
    background: #060606 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.04) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7) !important;
    border-radius: 12px !important;
}

.why-choose-section .why-item i,
.why-choose-section .why-item h4,
.why-choose-section .why-item p,
.testimonials-section .testimonial-card h3,
.testimonials-section .testimonial-card p,
.reviews-section .review-card p,
.client-feedback-section .client-name,
.client-feedback-section .client-role {
    color: #ffffff !important;
}

/* Blockquote/testimonial text */
.testimonial-quote,
.review-quote,
.testimonial-text {
    color: rgba(255,255,255,0.92) !important;
    font-style: normal !important;
}

/* Author / meta lines */
.testimonial-author,
.client-name {
    color: #ffffff !important;
    font-weight: 700 !important;
}
.testimonial-meta,
.client-location {
    color: rgba(255,255,255,0.7) !important;
}

/* Ensure icons inside these sections are white */
.why-choose-section i,
.testimonials-section i,
.reviews-section i {
    color: #ffffff !important;
}

/* Emergency overrides: force readable white text in main site content areas.
   This helps override inline styles or legacy rules that set dark colors.
   Keep these as last-resort; accent colors like links & buttons are preserved. */
main, header, footer, section, .container, .content, .site-main, .page-content {
    color: #ffffff !important;
}

/* If an element has an inline dark color (e.g. style="color: #0D0D0D"),
   this selector will prefer the site's white color in normal text areas. */
main *[style*="color:"] , header *[style*="color:"] , footer *[style*="color:"] , section *[style*="color:"] {
    color: #ffffff !important;
}

/* Keep links and buttons readable but allow accent colors to show */
a, button, .btn, .link {
    color: var(--accent-color) !important;
}

/* Small meta text should be slightly muted but readable */
.muted, .meta, small, .text-muted {
    color: rgba(255,255,255,0.75) !important;
}

/* Make call-to-action / contact text visible */
.why-choose-contact,
.why-choose-cta {
    color: #ffffff !important;
}


/* Additional dark-theme enforcement tweaks */
.top-contact-bar, .top-contact-bar a, .top-contact-bar i {
    color: #ffffff !important;
}

/* Header contact buttons: keep visible on hover and active states */
.top-contact-bar a, .top-contact-bar .contact-item {
    color: #ffffff !important;
}
.top-contact-bar a:hover, .top-contact-bar .contact-item:hover {
    color: var(--accent-color) !important;
}

/* CTA hero phone box: ensure background remains dark and text/icon visible */
.cta-buttons .call-btn-animated {
    background: #0b0b0b !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
}
.cta-buttons .call-btn-animated:hover {
    background: rgba(255,255,255,0.04) !important;
    color: #ffffff !important;
}

/* Also ensure scroll-to-quote / Teklif Al button icon is visible */
.cta-buttons .btn.btn-primary .fa-file-invoice, .quote-form-header h2 i {
    color: #ffffff !important;
}

/* Social links that are disabled should still show dim icon on dark bg */
a[onclick*="return false;"] i, a[onclick*="return false;"] {
    opacity: 0.45 !important;
    color: rgba(255,255,255,0.6) !important;
}

/* Mobile menu chevrons/icons - keep visible on dark background */
.mobile-menu-list .fa-chevron-right {
    color: rgba(255,255,255,0.7) !important;
}

/* Ensure modal and panels using white backgrounds are darkened */
.modal-content, .card, .work-item, .gallery-item {
    background: linear-gradient(180deg,#0b0b0b,#050505) !important;
    color: #ffffff !important;
}


/* Mobile menu icons: make them visible on dark background */
.mobile-menu-list a i,
.mobile-menu-list a .fa,
.mobile-menu-list .menu-item-with-badge i {
    color: rgba(255,255,255,0.92) !important;
    opacity: 1 !important;
}
.mobile-menu-list a:hover i,
.mobile-menu-list a:focus i {
    color: var(--accent-color) !important;
}

/* Ensure chevrons are visible */
.mobile-menu-list .fa-chevron-right {
    color: rgba(255,255,255,0.65) !important;
}

/* Mobile social icons & footer inside mobile menu */
.mobile-social a i,
.mobile-social a {
    color: #ffffff !important;
    opacity: 0.95 !important;
}

/* Keep phone call CTAs readable on hover/focus: preserve colored background and white text */
.mobile-call-btn,
.call-btn,
.btn.call-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
}
.mobile-call-btn .phone-number,
.call-btn .phone-number,
.btn.call-btn .phone-number {
    color: #ffffff !important;
}
.mobile-call-btn:hover,
.mobile-call-btn:focus,
.call-btn:hover,
.call-btn:focus,
.btn.call-btn:hover,
.btn.call-btn:focus {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.55);
}

.mobile-call-btn:active,
.call-btn:active,
.btn.call-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.45) !important;
}


/* Touch improvements */
.mobile-call-btn, .mobile-whatsapp-btn, .call-btn { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.mobile-call-btn:active, .mobile-whatsapp-btn:active { transform: scale(0.995) !important; }

/* Ripple effect element */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.16);
    pointer-events: none;
    opacity: 0.9;
    transition: transform 480ms cubic-bezier(.2,.9,.2,1), opacity 480ms ease;
    will-change: transform, opacity;
}
.btn-ripple.show { transform: scale(1); opacity: 0; }
/* Prevent mobile browsers from showing white tap highlight and prevent any global hover rules from overriding */
.mobile-menu-list a[href^="tel:"],
.mobile-menu-list a[href^="tel:"] .phone-number,
.mobile-menu-list a.mobile-call-btn,
.mobile-menu-list a.mobile-call-btn * {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
}

/* Extra-high specificity guard: inline-level anchor inside mobile menu */
nav .mobile-menu-panel .mobile-menu-list a.mobile-call-btn:hover,
nav .mobile-menu-panel .mobile-menu-list a.mobile-call-btn:active,
nav .mobile-menu-panel .mobile-menu-list a.mobile-call-btn:focus {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
}


/* WhatsApp row: stronger green gradient and readable label */
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}
.mobile-whatsapp-btn i {
    color: #ffffff !important;
}
.mobile-whatsapp-btn .online-badge {
    background: #00c853 !important; /* brighter green */
    color: #ffffff !important;
    padding: 0.2rem 0.45rem !important;
    border-radius: 999px !important;
    font-size: 0.75rem !important;
}

/* Make phone numbers bold on dark bg for readability */
.mobile-call-btn .phone-number,
.mobile-call-btn .phone-number * {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Improved CTA animations for mobile menu open */
@keyframes callPop {
    0% { opacity: 0; transform: translateY(12px) scale(0.98); }
    60% { opacity: 1; transform: translateY(-6px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes whatsappGlowPulse {
    0% { box-shadow: 0 6px 18px rgba(34,197,94,0.06); transform: translateY(0) scale(1); }
    50% { box-shadow: 0 20px 40px rgba(34,197,94,0.20); transform: translateY(-4px) scale(1.02); }
    100% { box-shadow: 0 6px 18px rgba(34,197,94,0.06); transform: translateY(0) scale(1); }
}

/* subtle pulse for online badge */
@keyframes badgePulse {
    0% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1); opacity: 0.95; }
}

/* Apply pop animation to call buttons when menu opens; use --stagger for timing (set by JS) */
.mobile-menu-panel.open .contact-cta li a.mobile-call-btn,
.mobile-menu-panel.open .contact-cta li a.mobile-quote-btn {
    animation: callPop 420ms cubic-bezier(.2,.9,.25,1) both;
    animation-delay: calc(var(--stagger, 0ms) + 60ms);
}

/* Second hat slightly more prominent */
.mobile-menu-panel.open .contact-cta li:nth-child(3) a.mobile-call-btn {
    transform-origin: center;
    /* slightly longer delay if needed */
    animation-delay: calc(var(--stagger, 0ms) + 120ms);
}

/* WhatsApp gets a gentle glow + pop and a repeating subtle pulse when visible */
.mobile-menu-panel.open .contact-cta li a.mobile-whatsapp-btn {
    animation: callPop 420ms cubic-bezier(.2,.9,.25,1) both;
    animation-delay: calc(var(--stagger, 0ms) + 180ms);
    animation-iteration-count: 1;
}
.mobile-menu-panel.open .contact-cta li a.mobile-whatsapp-btn.whatsapp-live {
    animation: whatsappGlowPulse 3s ease-in-out 0.8s infinite;
}

/* Make online badge pulse when menu open */
.mobile-menu-panel.open .contact-cta .online-badge {
    animation: badgePulse 1800ms ease-in-out 1s infinite;
}

/* Ensure phone text stays white and doesn't invert on hover/tap */
.mobile-menu-panel .contact-cta a:hover .phone-number,
.mobile-menu-panel .contact-cta a:focus .phone-number,
.mobile-menu-panel .contact-cta a:active .phone-number {
    color: #ffffff !important;
}

/* Make contact CTAs easier to tap: full-width, clear spacing on mobile */
.mobile-menu-panel .contact-cta li a {
    width: calc(100% - 3rem);
    margin: 0.25rem 1.5rem;
    border-radius: 10px;
    justify-content: flex-start;
}

/* Emphasize second hat (slightly darker background) */
.mobile-menu-panel .contact-cta li:nth-child(2) a.mobile-call-btn,
.mobile-menu-panel .contact-cta li:nth-child(3) a.mobile-call-btn {
    /* Make both primary call buttons full orange like Hemen Ara */
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
}

/* Icon chip: small rounded square left of CTA text for clearer icon contrast */
.mobile-menu-panel .contact-cta li a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    background: rgba(0,0,0,0.12);
    color: #ffffff !important;
    font-size: 1.15rem;
    margin-right: 0.9rem;
    flex-shrink: 0;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.02);
}

/* Ensure labels and phone numbers are high contrast */
.mobile-menu-panel .contact-cta li a span,
.mobile-menu-panel .contact-cta li a .phone-number {
    color: #ffffff !important;
}

/* Phone number chip on the right: dark pill with white bold text */
.mobile-menu-panel .contact-cta li a .phone-number {
    background: rgba(255,255,255,0.12);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    margin-left: auto;
    color: #0b0b0b !important; /* dark text on light chip for contrast */
    box-shadow: 0 6px 18px rgba(0,0,0,0.25) inset;
}

/* WhatsApp: bright green background with white text and icon, ensure legibility */
.mobile-menu-panel .contact-cta li a.mobile-whatsapp-btn {
    background: linear-gradient(90deg, #25D366 0%, #16a34a 100%) !important;
    color: #ffffff !important;
}
.mobile-menu-panel .contact-cta li a.mobile-whatsapp-btn i {
    background: rgba(255,255,255,0.06);
    color: #ffffff !important;
}
.mobile-menu-panel .contact-cta li a.mobile-whatsapp-btn span { color: #ffffff !important; }

/* Reduce transparency of icon chip for better contrast on dark backgrounds */
.mobile-menu-panel .contact-cta li a i { background: rgba(255,255,255,0.06); }

/* Slightly enlarge text inside CTAs for readability */
.mobile-menu-panel .contact-cta li a span { font-size: 1rem; font-weight: 600; }

/* Make the quick-quote button darker and more subtle */
.mobile-menu-panel .contact-cta li a.mobile-quote-btn { background: linear-gradient(90deg, rgba(255,217,61,0.06), rgba(255,217,61,0.03)); color: #f8b84b !important; }

/* Ensure spacing on small devices */
@media (max-width: 420px) {
    .mobile-menu-panel .contact-cta li a i { width: 40px; height: 40px; min-width: 40px; }
    .mobile-menu-panel .contact-cta li a .phone-number { padding: 0.25rem 0.5rem; font-size: 0.95rem; }
}


/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ALERT BANNER === */
.alert-banner {
    padding: 1rem 0;
    position: relative;
    animation: slideDown 0.5s ease;
}

.alert-banner.success {
    background: #d4edda;
    border-bottom: 3px solid #28a745;
}

.alert-banner.error {
    background: #f8d7da;
    border-bottom: 3px solid #dc3545;
}

.alert-banner .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.alert-banner i {
    font-size: 1.5rem;
}

.alert-banner.success i {
    color: #28a745;
}

.alert-banner.error i {
    color: #dc3545;
}

.alert-banner span {
    flex: 1;
    color: var(--text-color);
}

.alert-banner a {
    color: #4A90E2;
    font-weight: bold;
}

.alert-banner .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0 0.5rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === HEADER & NAVIGATION === */
.header {
    /* Semi-transparent glass header with subtle blur */
    background: rgba(6,6,6,0.55); /* semi-transparent to show page behind */
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 220ms ease, padding 220ms ease, transform 220ms ease;
    padding: 0.6rem 0; /* slightly more compact header */
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem; /* slightly smaller for compact header */
    font-weight: 800;
    color: var(--secondary-color);
    transition: transform 160ms ease, opacity 0.25s ease;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo i {
    font-size: 2.2rem; /* larger icon */
    color: var(--accent-color);
}

/* Shrink header on scroll for subtle effect */
.header.shrink {
    padding: 0.5rem 0 !important;
    transform: translateY(-1px);
}

/* Slightly more spacious nav items for better readability on larger header */
.nav-menu { gap: 2.5rem; }

/* Mobile adjustments: reduce header padding and logo size for small screens */
@media (max-width: 900px) {
    /* keep moderate reduction for tablet sizes */
    .header { padding: 0.5rem 0; }
    .logo { font-size: 1.15rem; }
    .logo i { font-size: 1.5rem; }
    .nav-menu { gap: 1rem; }
}

/* More aggressive shrink for small mobile viewports so section headings remain visible */
@media (max-width: 420px) {
    .header {
        padding: 0.25rem 0; /* reduce vertical space */
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .navbar { padding: 0.35rem 0; }

    .logo {
        font-size: 1.0rem; /* smaller brand text */
        gap: 0.4rem;
    }

    .logo-img { height: 30px; }
    .logo i { font-size: 1.2rem; }

    /* hamburger / mobile toggle smaller and tighter */
    #mobileMenuToggle, .mobile-menu-close {
        width: 36px;
        height: 36px;
        font-size: 1.0rem;
    }

    /* mobile menu header has less padding so it doesn't push content down when opened */
    .mobile-menu-header { padding: 0.8rem 0.75rem; }
    .mobile-menu-panel { width: 360px; max-width: 88%; }

    /* shrink contact CTA spacing slightly */
    .mobile-menu-panel .contact-cta li a { margin: 0.2rem 1rem; width: calc(100% - 2rem); }
    .mobile-menu-panel .contact-cta li a i { width: 38px; height:38px; min-width:38px; }

    /* ensure page content isn't further pushed; reduce hero top padding on small screens */
    .hero { padding-top: 2rem; }
}

/* When not on the homepage, add spacing so the sticky header doesn't overlap section headings
   The JS sets --header-offset dynamically; fall back to 88px if not available. */
.has-header-offset .page-header,
.has-header-offset .section-title,
.has-header-offset h1,
.has-header-offset h2,
.has-header-offset h3 {
    /* use scroll-margin-top to ensure in-page anchors land below header */
    scroll-margin-top: var(--header-offset, 88px);
}

/* Also add a small top padding to the first major content block so initial page load isn't hidden */
.has-header-offset main > .container:first-child,
.has-header-offset .hero {
    padding-top: calc(var(--header-offset, 88px) + 8px);
}

/* Extra safety: ensure specific page sections have a visible top gap */
.has-header-offset #hakkimizda, /* if section ids exist */
.has-header-offset #galeri,
.has-header-offset #iletisim,
.has-header-offset #hizmetler,
.has-header-offset .page-hakkimizda .page-header,
.has-header-offset .page-galeri .page-header,
.has-header-offset .page-iletisim .page-header,
.has-header-offset .page-hizmetler .page-header {
    padding-top: calc(var(--header-offset, 88px) + 6px);
    margin-top: 0.25rem;
    scroll-margin-top: var(--header-offset, 88px);
}

/* Make the header even leaner for very small screens (force compact) */
@media (max-width: 360px) {
    .header { padding: 0.15rem 0; }
    .navbar { padding: 0.2rem 0; }
    .logo { font-size: 0.95rem; }
    .logo-img { height: 26px; }
    .logo i { font-size: 1.05rem; }
    #mobileMenuToggle, .mobile-menu-close { width: 34px; height: 34px; }

    /* tighten mobile menu panel spacing */
    .mobile-menu-header { padding: 0.5rem 0.6rem; }
    .mobile-menu-panel .mobile-menu-content { padding-top: 0.6rem; }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    list-style: none;
    flex-direction: row;
    align-items: center;
}

.nav-menu > li {
    display: inline-block;
    margin: 0;
}

/* Desktop'ta sadece normal menü linkleri */
.nav-menu > li:not(.mobile-only):not(.mobile-divider) {
    display: inline-block;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop'ta ikonları ve chevronları gizle */
.nav-menu a i {
    display: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--accent-color) !important;
    color: var(--white) !important;
}

/* Ensure hero and CTA buttons keep readable white text/icons on hover */
.hero .cta .btn-primary:hover,
.hero .cta .btn-outline:hover,
.hero .cta .btn:hover,
.cta-buttons .call-btn-animated:hover {
    background: rgba(255,255,255,0.04) !important;
    color: #ffffff !important;
}

/* Force icons inside CTAs and nav to remain white */
.hero .cta .btn i,
.cta-buttons .call-btn-animated i,
.nav-menu a i {
    color: #ffffff !important;
}

/* Accent buttons and primary CTA */
.btn-primary { background: var(--accent-color); color: var(--white); border: none; }
.btn-outline { border: 1px solid rgba(255,255,255,0.08); color: var(--secondary-color); background: transparent; padding: 0.6rem 1rem; border-radius: 6px; }

/* Hero and sections on dark background */
.hero { padding: 4rem 0; background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)); color: var(--secondary-color); }

/* Yapılan İşler / Works Preview */
.works-section { padding: 3rem 0; }
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.work-item { position: relative; overflow: hidden; border-radius: 8px; }
.work-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.work-item:hover img { transform: scale(1.08) rotate(-1deg); }
.work-overlay { position: absolute; inset: 0; display:flex; align-items:center; justify-content:center; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%); opacity:0; transition: opacity 0.3s ease; }
.work-item:hover .work-overlay { opacity: 1; }

/* Force dark cards and white text in 'Yapılan İşler' and related preview areas */
.works-section,
.works-section .container,
.work-item,
.work-overlay {
    background: transparent !important;
    color: #ffffff !important;
}
.work-item { border: 1px solid rgba(255,255,255,0.04) !important; background: #060606 !important; }
.work-item img { opacity: 0.95; }

/* Trust badges and info cards */
.trust-badges-section,
.trust-badges-section .badge,
.trust-badges-section .container {
    background: transparent !important;
    color: #ffffff !important;
}
.trust-badges-section .badge { background: #0b0b0b !important; border: 1px solid rgba(255,255,255,0.04) !important; box-shadow: 0 8px 30px rgba(0,0,0,0.6) !important; }

/* Make trust-badge cards grey with white text (requested) */
.trust-badge {
    background: #2b2b2b !important; /* neutral grey */
    color: #ffffff !important;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.04) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.trust-badge i { color: rgba(255,255,255,0.95) !important; font-size: 1.6rem; }
.trust-badge h4 { color: #ffffff !important; margin: 0; }
.trust-badge p { color: rgba(255,255,255,0.8) !important; margin: 0; }

/* Trust-badge animations: fade-up on load with stagger + hover lift */
.trust-badge {
    opacity: 0;
    transform: translateY(18px) scale(0.995);
    animation: trustFadeUp 520ms cubic-bezier(.2,.9,.25,1) forwards;
}
.trust-badge:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 22px 50px rgba(0,0,0,0.6) !important;
}

@keyframes trustFadeUp {
    0% { opacity: 0; transform: translateY(18px) scale(0.995); }
    60% { opacity: 1; transform: translateY(-6px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Staggering for multiple badges */
.trust-badges-grid .trust-badge:nth-child(1) { animation-delay: 0ms; }
.trust-badges-grid .trust-badge:nth-child(2) { animation-delay: 90ms; }
.trust-badges-grid .trust-badge:nth-child(3) { animation-delay: 180ms; }
.trust-badges-grid .trust-badge:nth-child(4) { animation-delay: 270ms; }
.trust-badges-grid .trust-badge:nth-child(5) { animation-delay: 360ms; }
.trust-badges-grid .trust-badge:nth-child(6) { animation-delay: 450ms; }

/* FAQ section (Sıkça Sorulan Sorular) */
.faq-section,
.faq-section .faq-item,
.faq-section .faq-question,
.faq-section .faq-answer {
    background: transparent !important;
    color: #ffffff !important;
}
.faq-section .faq-item { background: #060606 !important; border: 1px solid rgba(255,255,255,0.04) !important; }
.faq-section .faq-question { font-weight:700; }

/* Make section titles (Yapılan İşler, Sıkça Sorulan Sorular) white */
.section-title { color: #ffffff !important; }

/* Contact / action buttons (Hemen Arayın, WhatsApp, Mesaj Gönderin) */
.contact-cta,
.contact-cta a,
.contact-cta .whatsapp-btn,
.contact-cta .call-btn,
.contact-cta .msg-btn {
    color: #ffffff !important;
}
.contact-cta .whatsapp-btn { background: linear-gradient(135deg, #25D366 0%, #1ebc58 100%) !important; color: #ffffff !important; border-radius: 8px; padding: 0.6rem 1rem; display:inline-flex; align-items:center; gap:0.6rem; }
.contact-cta .call-btn { background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important; color: #ffffff !important; border-radius: 8px; padding: 0.6rem 1rem; }
.contact-cta .msg-btn { background: rgba(255,255,255,0.04) !important; color: #ffffff !important; border-radius: 8px; padding: 0.5rem 0.9rem; }

/* Ensure icons inside contact CTA are visible */
.contact-cta i { color: #ffffff !important; }

/* Small helpers for emphasized stats/badges */
.stat-badge { background: #0b0b0b !important; color: #fff !important; border-radius: 10px; padding: 0.6rem 0.9rem; display:inline-block; border: 1px solid rgba(255,255,255,0.03); }

/* Gallery */
.gallery-section { padding: 3rem 0; }
.gallery-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item { overflow:hidden; border-radius:8px; }
.gallery-item img { width:100%; height:180px; object-fit:cover; display:block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* Responsive tweaks */
@media (max-width: 900px) {
    .works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .works-grid { grid-template-columns: 1fr; }
}

/* Apply body padding equal to header offset on small screens so sticky header doesn't overlap content */
@media (max-width: 900px) {
    body.has-header-offset {
        padding-top: var(--header-offset, 88px) !important;
    }
}

/* Lightbox Modal */
.glb-modal { position: fixed; inset:0; background: rgba(0,0,0,0.85); display:flex; align-items:center; justify-content:center; opacity:0; transition: opacity 0.25s ease; z-index:20000; }
.glb-modal.open { opacity:1; }
.glb-content { position: relative; max-width: 90vw; max-height: 90vh; }
.glb-content img { width: auto; max-width:100%; max-height:90vh; display:block; border-radius:6px; }
.glb-close { position: absolute; top: -12px; right: -12px; background: var(--accent-color); border: none; color: #fff; font-size: 1.5rem; width:36px; height:36px; border-radius:50%; cursor:pointer; }

/* Mobil menü overlay (default gizli) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 85%;
    height: 100vh;
    /* Dark mobile panel to match site theme */
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 10000;
}
/* Make the mobile panel glassy and slightly translucent with smoother entrance */
.mobile-menu-panel.dark-mobile-menu {
    background: rgba(6,6,6,0.55); /* translucent */
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    border-left: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu-overlay.active .mobile-menu-panel {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    color: var(--text-color);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.mobile-logo i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}
/* initial hidden state for animated items */
.mobile-menu-list .menu-item-with-badge {
    opacity: 0;
    transform: translateX(18px);
}

/* when panel open, items will slide/fade in (stagger controlled by JS) */
.mobile-menu-panel.open .mobile-menu-list .menu-item-with-badge {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 360ms cubic-bezier(.2,.9,.25,1), transform 360ms cubic-bezier(.2,.9,.25,1);
}

.mobile-menu-list a i:first-child {
    font-size: 1.25rem;
    width: 30px;
    color: var(--primary-color);
}

.mobile-menu-list a .fa-chevron-right {
    margin-left: auto;
    font-size: 0.875rem;
    color: #95a5a6;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: linear-gradient(90deg, rgba(107, 46, 143, 0.1) 0%, transparent 100%);
    color: var(--text-color);
}

.mobile-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.5rem 1.5rem;
}

.mobile-quote-btn,
.mobile-call-btn,
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.mobile-quote-btn {
    background: linear-gradient(90deg, rgba(255, 217, 61, 0.15) 0%, transparent 100%);
    color: var(--text-color);
}

.mobile-quote-btn i {
    color: var(--yellow) !important;
}

.badge-new {
    background: var(--yellow);
    color: var(--text-color);

/* Truncate the label in mobile quote button so it doesn't wrap */
.mobile-quote-btn span,
.mobile-quote-btn .label {
    /* In a flex container the child needs min-width:0 to allow shrinking and ellipsis */
    display: inline-block;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    max-width: 160px; /* reasonable maximum before truncation */
}

@media (max-width: 420px) {
    .mobile-quote-btn span,
    .mobile-quote-btn .label {
        max-width: 100px;
    }
}
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 700;
    margin-left: auto;
}

.mobile-call-btn {
    background: linear-gradient(90deg, rgba(107, 46, 143, 0.15) 0%, transparent 100%);
    color: var(--text-color);
}

.mobile-call-btn i {
    color: #ffffff !important; /* show icon white on dark bg */
}

.phone-number {
    margin-left: auto;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Prevent phone number turning unreadable on hover; keep contrast */
.mobile-call-btn:hover .phone-number,
.call-btn:hover, .call-btn-animated:hover, .btn-call-action:hover {
    color: #ffffff !important;
}

/* Ensure outline-white CTA keeps readable text on colorful CTA background */
.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff !important;
    background: rgba(255,255,255,0.04);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
}

/* Keep .btn-call-action readable even when background gradient is used */
.btn-call-action, .call-btn-animated {
    color: #ffffff !important;
}
.btn-call-action:hover, .call-btn-animated:hover {
    color: #ffffff !important;
}

.mobile-whatsapp-btn {
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.15) 0%, transparent 100%);
    color: #25D366;
}

.mobile-whatsapp-btn i {
    color: #25D366 !important;
}

.online-badge {
    background: #25D366;
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    margin-left: auto;
}

.mobile-menu-footer {
    padding: 1.5rem;
        background: transparent;
        border-top: 1px solid rgba(255,255,255,0.04);
}

.mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}
/* social icons start subtle (transparent) and animate when menu opens */
.mobile-social a {
    opacity: 0.35;
    transform: scale(0.96);
}
.mobile-menu-panel.open .mobile-social a {
    opacity: 1;
    transform: scale(1);
    transition: opacity 420ms ease, transform 420ms cubic-bezier(.2,.9,.25,1);
}

/* Slight stagger helper: when panel has stagger class, we'll delay individual children via CSS variables set by JS */
.mobile-menu-panel .menu-item-with-badge {
    transition-delay: var(--stagger, 0ms);
}
.mobile-menu-panel .mobile-social a { transition-delay: calc(var(--stagger, 0ms) + 120ms); }

.mobile-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Lively entrance for social icons when menu opens */
@keyframes socialPopIn {
    0% { transform: translateY(8px) scale(0.95); opacity: 0; }
    60% { transform: translateY(-6px) scale(1.06); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.mobile-menu-panel.open .mobile-social a {
    animation: socialPopIn 420ms cubic-bezier(.2,.9,.25,1) both;
}

/* Slight stagger via nth-child so icons don't all pop at once */
.mobile-menu-panel.open .mobile-social a:nth-child(1) { animation-delay: 180ms; }
.mobile-menu-panel.open .mobile-social a:nth-child(2) { animation-delay: 260ms; }
.obile-menu-panel.open .mobile-social a:nth-child(3) { animation-delay: 340ms; }
.mobile-menu-panel.open .mobile-social a:nth-child(4) { animation-delay: 420ms; }

/* Stronger hover effect: colored glow matching brand */
.mobile-social a:hover { transform: translateY(-6px) scale(1.06); box-shadow: 0 18px 40px rgba(0,0,0,0.45); }

/* Ensure disabled social icons remain muted */
.mobile-social a[onclick*="return false;"] , .mobile-social a[href="#"] { filter: grayscale(60%); opacity: 0.28 !important; }

/* Facebook - Mavi */
.mobile-social a[aria-label="Facebook"] {
    background: #1877F2;
}

.mobile-social a[aria-label="Facebook"]:hover {
    background: #0d65d9;
}

/* Instagram - Gradient */
.mobile-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mobile-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #d87d2a 0%, #cd5a33 25%, #c31e3a 50%, #b31d5d 75%, #a10f7f 100%);
}

/* If social url is '#' (not set by admin), make it look disabled and non-interactive */
.mobile-social a[onclick*="return false;"] , .mobile-social a[href="#"] {
    opacity: 0.35 !important;
    pointer-events: none !important;
    filter: grayscale(30%);
}

/* Quick Quote button subtle entrance animation */
@keyframes quickQuotePop {
    0% { transform: translateY(8px) scale(0.98); opacity: 0; }
    60% { transform: translateY(-6px) scale(1.02); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.mobile-menu-panel.open .mobile-quote-btn {
    animation: quickQuotePop 420ms cubic-bezier(.2,.9,.25,1) both;
}

/* Repeating gentle pulse to draw attention (used while menu is open or can be toggled) */
@keyframes quickQuotePulse {
    0% { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(255,122,24,0.06); }
    50% { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 48px rgba(255,122,24,0.18); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(255,122,24,0.06); }
}

.mobile-quote-btn.pulse {
    animation: quickQuotePulse 2.6s cubic-bezier(.2,.9,.25,1) 0.6s infinite both;
}

/* One-off attention animation: stronger pop + orange glow */
@keyframes quickQuoteAttention {
    0% { transform: translateY(10px) scale(0.96); box-shadow: 0 6px 18px rgba(255,122,24,0.04); opacity: 0; }
    40% { transform: translateY(-8px) scale(1.06); box-shadow: 0 30px 80px rgba(255,122,24,0.28); opacity: 1; }
    100% { transform: translateY(0) scale(1); box-shadow: 0 10px 30px rgba(255,122,24,0.12); opacity: 1; }
}

.mobile-quote-btn.attention {
    animation: quickQuoteAttention 720ms cubic-bezier(.2,.9,.25,1) both;
    border: 1px solid rgba(255,122,24,0.12);
}

/* Make sure the pulse is subtle on small screens */
@media (max-width: 420px) {
    .mobile-quote-btn.pulse { animation-duration: 2.4s; }
}

/* Twitter/X - Siyah */
.mobile-social a[aria-label="Twitter"] {
    background: #000000;
}

.mobile-social a[aria-label="Twitter"]:hover {
    background: #1a1a1a;
}

/* LinkedIn - Mavi */
.mobile-social a[aria-label="LinkedIn"] {
    background: #0077B5;
}

.mobile-social a[aria-label="LinkedIn"]:hover {
    background: #006399;
}

.mobile-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #7f8c8d;
    margin: 0;
}

/* Mobile toggle button (desktop'ta gizli) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white) !important;
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 0 rgba(0,0,0,0.45);
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
}

.btn-primary:hover {
    background: #ff9b4a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Unified CTA animation (pulse + lift) applied to main action buttons */
@keyframes ctaPulse {
    0% { transform: translateY(0) scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
    50% { transform: translateY(-3px) scale(1.01); box-shadow: 0 14px 30px rgba(0,0,0,0.45); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
}

/* Apply animation subtly on load and stronger hover effect */
.btn.btn-primary, .btn.call-btn, .btn.whatsapp-btn, .btn-outline-white, .btn.btn-success {
    animation: ctaPulse 2.8s ease-in-out 0.8s 1 both;
}
.btn.btn-primary:hover, .btn.call-btn:hover, .btn.whatsapp-btn:hover, .btn-outline-white:hover, .btn.btn-success:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Ensure icons inside CTA buttons are visible and sized */
.btn i, .contact-cta i { color: #ffffff !important; font-size: 1.05rem; }

/* Add animation to floating whatsapp/button too */
.whatsapp-float, .call-float, .live-chat-float { transition: transform 220ms ease, box-shadow 220ms ease; }
.whatsapp-float:hover, .call-float:hover, .live-chat-float:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.6); }

/* ===== Per-button unique animations ===== */
/* Disable previous catch-all animation for clarity */
.btn.btn-primary, .btn.call-btn, .btn.whatsapp-btn, .btn-outline-white, .btn.btn-success, .call-btn-animated {
    animation: none !important;
}

/* Primary button: soft pulse + lift */
@keyframes primaryPulse {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}
.btn.btn-primary {
    animation: primaryPulse 2.4s ease-in-out 0.3s 1 both;
}
.btn.btn-primary:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 28px 60px rgba(0,0,0,0.6); }

/* Call button: quick wobble to draw attention once */
@keyframes callWobble {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-6deg); }
    50% { transform: rotate(6deg); }
    80% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}
.call-btn, .call-btn-animated {
    animation: callWobble 1.1s ease-in-out 0.5s 1 both;
}
.call-btn:hover, .call-btn-animated:hover { transform: translateY(-6px) rotate(0deg); box-shadow: 0 20px 48px rgba(0,0,0,0.55); }

/* WhatsApp button: gentle green glow (infinite subtle pulse) */
@keyframes whatsappGlow {
    0% { box-shadow: 0 6px 18px rgba(37,211,102,0.06); }
    50% { box-shadow: 0 18px 36px rgba(37,211,102,0.22); }
    100% { box-shadow: 0 6px 18px rgba(37,211,102,0.06); }
}
.whatsapp-btn, .whatsapp-float {
    animation: whatsappGlow 3s ease-in-out 0.6s infinite both;
}
.whatsapp-btn:hover, .whatsapp-float:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(34,197,94,0.32); }

/* Outline buttons: small bounce on entrance */
@keyframes outlineBounce {
    0% { transform: translateY(10px); opacity: 0; }
    60% { transform: translateY(-6px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}
.btn-outline-white, .btn.btn-outline {
    animation: outlineBounce 0.9s cubic-bezier(.2,.9,.25,1) 0.2s 1 both;
}
.btn-outline-white:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(0,0,0,0.45); }

/* Ensure icons remain visible and slightly scale on hover for all CTA buttons */
.btn i, .contact-cta i { color: #ffffff !important; transition: transform 180ms ease, color 180ms ease; }
.btn:hover i, .contact-cta:hover i { transform: scale(1.06); color: #ffffff !important; }


.btn-success {
    background: #25D366;
    color: var(--white);
}

.btn-success:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(0,0,0,0.6) 50%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234A90E2" opacity="0.1" width="1200" height="600"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* === STATS SECTION === */
.stats-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.03);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(107, 46, 143, 0.4);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
}

.stat-plus {
    font-size: 2rem;
    color: var(--yellow);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}


/* Remove previously defined colorful gradients on specific icon classes and unify style */
.services-section .service-icon[class*="icon-"] {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6) inset, 0 6px 20px rgba(0,0,0,0.6);
}

/* If there are specific icon-* gradient rules, nullify them */
.icon-support, .icon-package, .icon-office, .icon-travel, .icon-home, .icon-time {
    background-image: none !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)) !important;
    color: #ffffff !important;
}

/* Option: make icon container slightly larger and centered like the example */
.service-card .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* === WHY CHOOSE SECTION === */
.why-choose-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.why-item p {
    color: var(--text-light);
}

/* === QUICK QUOTE FORM === */
.quick-quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(0,0,0,0.55) 100%);
}

.quick-quote-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--accent-color);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quote-form-header h2 {
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

    .quote-form-header h2 i {
    color: var(--primary);
}

.quote-form-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88) !important;
}

.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-quote-form .form-group {
    display: flex;
    flex-direction: column;
}

.quick-quote-form .form-group label {
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-quote-form .form-group label i {
    color: #ffffff !important;
    width: 20px;
}

.quick-quote-form .form-group input,
.quick-quote-form .form-group select {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #0b0b0b !important;
    color: #ffffff !important;
}

    .quick-quote-form .form-group input:focus,
    .quick-quote-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.78) !important;
    margin-top: 0.25rem;
}

.form-note {
    background: linear-gradient(180deg, rgba(255,122,24,0.06), rgba(255,122,24,0.03));
    border: 2px solid rgba(255,122,24,0.15);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-note i {
    color: rgba(255,122,24,0.9);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.form-note p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.form-note strong {
    color: rgba(255,122,24,0.95);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: #060606 !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6) !important;
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(255,255,255,0.03) !important;
    border-left: 5px solid var(--yellow);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
    border-left-color: var(--purple);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD400 !important; /* bright yellow stars */
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.92) !important;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255,255,255,0.03);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: #ffffff !important;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7) !important;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* === TRUST BADGES SECTION === */
.trust-badges-section {
    padding: 4rem 0;
    background: var(--white);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(107, 46, 143, 0.05), rgba(255, 217, 61, 0.05));
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.15);
}

.trust-badge i {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.trust-badge h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* === FAQ SECTION === */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--white);
    border: 3px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.2);
}

.faq-item.active {
    border-color: var(--yellow);
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--purple);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question span i:first-child {
    color: var(--yellow);
    font-size: 1.3rem;
}

.faq-question > i {
    font-size: 1.2rem;
    color: var(--purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question > i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
}

.about-stat {
    background: #2b2b2b !important; /* grey card */
    padding: 1.25rem !important;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    color: #ffffff !important;
}
.about-stat i {
    font-size: 2.4rem;
    color: #ffffff !important;
    margin-bottom: 0.6rem;
}
.about-stat h3 {
    font-size: 1.05rem;
    color: #ffffff !important;
    margin-bottom: 0.4rem;
}

.about-stat p {
    color: rgba(255,255,255,0.85) !important;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Strong, specific override for the CTA phone outline button in the CTA section */
.cta-section .btn.btn-outline-white,
.cta-section a[href^="tel:"] {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
    padding: 0.85rem 1.25rem !important;
    min-width: 200px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    -webkit-tap-highlight-color: transparent !important;
}
.cta-section .btn.btn-outline-white i,
.cta-section a[href^="tel:"] i { color: #ffffff !important; }

/* Hover/focus/active - keep translucent dark background, never solid white */
.cta-section .btn.btn-outline-white:hover,
.cta-section .btn.btn-outline-white:focus,
.cta-section .btn.btn-outline-white:active,
.cta-section a[href^="tel:"]:hover,
.cta-section a[href^="tel:"]:focus,
.cta-section a[href^="tel:"]:active {
    background: rgba(255,255,255,0.04) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5) !important;
}

/* If inline styles try to force a full white background, neutralize them */
.cta-section .btn.btn-outline-white[style],
.cta-section a[href^="tel:"][style],
.cta-section .btn.btn-outline-white[style] *,
.cta-section a[href^="tel:"][style] * {
    background: transparent !important;
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Extra caution: very high specificity fallback for any nav/mobile panel tel anchors */
nav .mobile-menu-panel .mobile-menu-list a[href^="tel:"] {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* === PAGE HEADER === */
.page-header {
    padding: 3.25rem 0;
    background: #2b2b2b !important; /* match service card grey */
    color: #ffffff !important;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* === SERVICE DETAIL === */
.services-detail-section {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-detail-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* === PROCESS SECTION === */
.process-section {
    padding: 4rem 0;
    background: #000000 !important; /* match site black background */
    color: #ffffff !important;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    position: relative;
    background: #2b2b2b !important; /* grey card */
    color: #ffffff !important;
    padding: 1.6rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
}

.process-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.process-icon {
    font-size: 2.4rem;
    color: #ffffff !important;
    margin: 0.8rem 0;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
    color: #ffffff !important;
}

.process-step p {
    color: rgba(255,255,255,0.85) !important;
}

/* Add subtle hover lift for steps */
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.65) !important;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 4rem 0;
    background: #000000 !important;
    color: #ffffff !important;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text, .about-image {
    background: #2b2b2b !important;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 1.25rem !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
}

.about-text h2, .about-text p, .about-text .lead {
    color: #ffffff !important;
}

/* Responsive tweaks for the about-image placeholder */
.about-image .service-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 0.8rem;
    border-radius: 10px;
}
.about-image .service-placeholder i {
    font-size: 2.6rem;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.about-image .company-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.about-image .company-stats div {
    background: rgba(255,255,255,0.03);
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    color: #ffffff !important;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.about-image .service-placeholder h3,
.about-image .service-placeholder p {
    color: #ffffff !important;
    opacity: 1 !important;
}

@media (max-width: 900px) {
    .about-image, .about-text { width: 100%; }
    .about-image .service-placeholder i { font-size: 2rem; }
    .about-image .company-stats { flex-direction: column; gap: 0.5rem; }
}

/* Redesigned company stats block - centered header + chips */
.about-company {
    margin: 0 auto 24px auto;
    padding: 26px 28px;
    background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
    border-radius: 12px;
    color: #ffffff !important;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    max-width: 1100px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.04);
}
.about-company h3 { font-size: 1.35rem; color: #ffffff !important; margin: 0; font-weight:700; }
.about-company p { color: rgba(255,255,255,0.88); margin:0; }
.about-company .about-text { flex: 1 1 60%; color: #ffffff !important; }
.about-image { flex: 0 0 380px; max-width: 380px; }
.about-image .service-placeholder {
    background: rgba(255,255,255,0.02);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.service-placeholder.about-company {
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 14px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-placeholder.about-company:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
}

.service-placeholder.about-company i {
    background: linear-gradient(135deg,#2bb673 0%,#1aa65a 100%);
    color: #fff !important;
    padding: 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.service-placeholder.about-company h3 { font-size: 1.15rem; margin: 8px 0 0 0; }
.service-placeholder.about-company p { margin: 0; color: rgba(255,255,255,0.85); }

.service-placeholder.about-company .company-stats { width: 100%; display:flex; gap:10px; justify-content: center; flex-wrap:wrap; margin-top:8px }
.service-placeholder.about-company .company-stats div { flex: 1 1 45%; min-width: 140px; display:flex; gap:10px; align-items:center; justify-content:center; padding:10px 12px; border-radius:10px; background: rgba(255,255,255,0.02); }
.service-placeholder.about-company .company-stats div i { font-size: 20px; color: #fff !important; width:28px; text-align:center }

/* subtle appearing animation when scrolled into view (uses classes already on markup) */
.animate-on-scroll { opacity: 0; transform: translateY(8px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }
.about-image .service-placeholder i {
    font-size: 42px;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.about-image .service-placeholder h3 { color: #ffffff !important; margin: 6px 0 0 0; font-size: 16px; }
.about-image .service-placeholder p { color: #d0d0d0 !important; margin: 0; font-size: 13px; }
.company-stats { display:flex; gap:12px; margin-top:12px; align-items:stretch; }
.company-stats .stat {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 14px 16px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 160px;
    justify-content: center;
}
.company-stats .stat i { color: #ffffff !important; font-size: 24px }
.company-stats .stat .label { color: #e6e6e6 !important; font-size: 13px }
.company-stats .stat .value { color: #fff !important; font-weight:700 }

/* make stats stack on smaller screens */
@media (max-width: 820px) {
    .about-company { flex-direction: column; padding: 20px; }
    .about-image { max-width: 100%; width: 100%; order: 2; }
    .about-company .about-text { order: 1; }
    .company-stats { flex-direction: column; gap: 10px; }
    .company-stats .stat { width: 100%; min-width: 0; padding: 12px; }
    .about-image .service-placeholder i { font-size: 34px }
}

@media (max-width: 520px) {
    .service-placeholder.about-company { padding: 16px; }
    .service-placeholder.about-company i { width: 56px; height:56px; font-size:22px }
    .service-placeholder.about-company .company-stats div { flex: 1 1 100%; }
}

/* More compact header specifically on small phones */
@media (max-width: 480px) {
    .header {
        padding: 0.35rem 0 !important;
    }

    .logo { font-size: 1.05rem !important; }
    .logo img, .logo-img { height: 34px !important; }
    .logo i { font-size: 1.15rem !important; }

    .mobile-menu-toggle span { width: 20px; height: 2.5px; }
    .mobile-menu-toggle { padding: 4px; }

    .mobile-menu-panel { width: 360px; max-width: 86%; }

    .mobile-menu-header { padding: 0.9rem 1rem; }
    .mobile-menu-content { padding: 0.6rem 0; }
}

/* Stronger mobile-first tweaks for better fit on small phones */
@media (max-width: 420px) {
    .service-placeholder.about-company {
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.55);
    }
    /* icon left, text right compact row */
    .service-placeholder.about-company {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .service-placeholder.about-company i {
        width: 48px; height:48px; font-size:20px; padding:10px;
    }
    .service-placeholder.about-company h3 {
        font-size: 1rem;
        margin: 0;
    }
    .service-placeholder.about-company p { font-size: 12px }
    .service-placeholder.about-company .company-stats {
        width: 100%;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .service-placeholder.about-company .company-stats div {
        padding: 12px 10px;
        justify-content: flex-start;
        gap: 8px;
    }
    .service-placeholder.about-company .company-stats div i { width: 30px; font-size:16px }
}

@media (max-width: 420px) {
    .about-company { padding: 16px; border-radius: 8px; }
    .about-company h2 { font-size: 22px }
    .about-company p { font-size: 14px }
    .about-image .service-placeholder i { font-size: 30px }
    .company-stats .stat .label { font-size: 12px }
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === MISSION VISION === */
.mission-vision-section {
    padding: 5rem 0;
    background: var(--light-color);

.mission-vision-section, .values-section, .about-stats-section, .cta-section {
    background: #000000 !important;
    color: #ffffff !important;
}

.mission-card, .vision-card, .value-card, .about-stat, .cta-content {
    background: #2b2b2b !important;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 1.25rem !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
}

.cta-section .btn { color: #ffffff !important; }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: #000000 !important; /* fully black */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    color: #ffffff !important;
}

.mv-icon {
    font-size: 3rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.4rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.88) !important;
    line-height: 1.7;
}

/* === VALUES SECTION === */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #2b2b2b !important; /* grey cards */
    padding: 1.25rem !important;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--purple));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.65) !important;
    border-color: rgba(255,255,255,0.06);
}

.value-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.value-card i {
    font-size: 2.4rem;
    color: #ffffff !important;
    margin-bottom: 0.6rem;
}
.value-card h4 {
    font-size: 1.05rem;
    color: #ffffff !important;
    margin-bottom: 0.4rem;
}

.value-card p {
    color: rgba(255,255,255,0.85) !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    padding: 1rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.team-member p {
    padding: 0 1rem 1.5rem;
    color: var(--text-light);
}

/* === ABOUT STATS === */
.about-stats-section {
    padding: 5rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-stat i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-stat h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: var(--text-light);
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info-side h2 {
    font-size: 2rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.contact-info-side > p {
    color: rgba(255,255,255,0.92) !important;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #ffffff !important;
    font-weight: 600;
}

.contact-details .note {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255,255,255,0.78) !important;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    gap: 1rem;
    transform: translateY(-2px);
}

/* Yol Tarifi Al butonu - Sarı arka plan */
.btn-link[href*="maps.google.com"] {
    background: var(--yellow);
    color: var(--text-color);
}

/* Ensure icons inside the yellow 'Yol Tarifi Al' button are black for visibility */
.btn-link[href*="maps.google.com"] i,
.btn-link[href*="maps.google.com"] .fa,
.btn-link[href*="maps.google.com"] svg {
    color: #000000 !important;
    fill: #000000 !important;
}

.btn-link[href*="maps.google.com"]:hover {
    background: #f1c40f;
    color: var(--text-color);
}

/* WhatsApp ile Yaz butonu - Yeşil arka plan */
.btn-link[href*="wa.me"] {
    background: #25D366;
    color: var(--text-color);
}

.btn-link[href*="wa.me"]:hover {
    background: #128C7E;
    color: white;
}

/* === CONTACT FORM === */
.contact-form-wrapper {
    background: linear-gradient(180deg,#111111,#0b0b0b) !important;
    padding: 2.5rem;
    border-radius: 15px;
    color: #ffffff !important;
    box-shadow: var(--shadow);
}

/* Placeholder color for inputs inside quick-quote form */
.quick-quote-form input::placeholder,
.quick-quote-form textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

/* Submit button in quick-quote form */
.quick-quote-form button[type="submit"],
.quick-quote-form .btn-primary {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    border: none !important;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: rgba(255,255,255,0.92) !important;
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Fade-out class for alerts - use opacity transform for smooth GPU-accelerated transitions */
.alert {
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.alert.fade-out {
    opacity: 0;
    transform: translateY(-6px);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: #0b0b0b !important;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff !important;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.14) !important;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.03) !important;
}

/* Explicit placeholder and phone number styling to guarantee readability */
.form-group input::placeholder,
.form-group textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.50) !important;
}

.contact-details .phone-number,
.contact-info-item .phone-number,
.quick-contact-card .phone-number {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.form-group small {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* === MAP SECTION === */
.map-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* === QUICK CONTACT === */
.quick-contact-section {
    padding: 5rem 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: linear-gradient(180deg,#0f0f0f,#0b0b0b) !important;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.04) !important;
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-card i {
    font-size: 3.5rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: rgba(255,255,255,0.78) !important;
    margin-bottom: 1.5rem;
}

/* Buttons inside quick-contact cards */
.quick-contact-card .btn-link,
.quick-contact-card .btn {
    margin-top: 1rem;
}

/* Specific variants for phone/whatsapp cards (use classes on the card element) */
.quick-contact-card.phone-card .btn-link,
.quick-contact-card.phone-card .btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}
.quick-contact-card.whatsapp-card .btn-link,
.quick-contact-card.whatsapp-card .btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

/* === FOOTER === */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 i {
    color: var(--yellow);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer brand styling: keep 'NEZAKET' white, make remaining footer text orange accent */
.footer-section, .footer-bottom {
    color: rgba(255,165,0,0.95) !important; /* orange-ish fallback */
}
.footer-section h3, .footer-bottom p {
    color: rgba(255,165,0,0.98) !important;
}
.brand-preserve { color: #ffffff !important; font-weight: 800; }
.footer-brand-rest { color: rgba(255,165,0,0.98) !important; font-weight: 700; }
.footer-section ul li a { color: rgba(255,165,0,0.92) !important; }
.footer-section p { color: rgba(255,165,0,0.9) !important; }

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Facebook - Mavi */
.social-links a[aria-label="Facebook"] {
    background: #1877F2;
}

.social-links a[aria-label="Facebook"]:hover {
    background: #0d65d9;
}

/* Twitter/X - Siyah */
.social-links a[aria-label="Twitter"] {
    background: #000000;
}

.social-links a[aria-label="Twitter"]:hover {
    background: #1a1a1a;
}

/* Instagram - Gradient */
.social-links a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #d87d2a 0%, #cd5a33 25%, #c31e3a 50%, #b31d5d 75%, #a10f7f 100%);
}

/* LinkedIn - Mavi */
.social-links a[aria-label="LinkedIn"] {
    background: #0077B5;
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: #006399;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* === FLOAT BUTTONS === */
/* Telefon butonu (üstte - Desktop) */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 130px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: phoneRing 2s ease-in-out infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.7);
}

/* WhatsApp butonu (altta - Desktop) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 30px;
    background: linear-gradient(135deg,#22c55e,#16a34a) !important;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(34,197,94,0.38);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

/* Live Chat butonu (sol alt) */
.live-chat-float {
    position: fixed;
    width: 180px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    padding: 0 1.5rem;
    cursor: pointer;
}

.live-chat-float i {
    font-size: 1.5rem;
}

.live-chat-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Chat Badge (Bildirim) */
.chat-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover,
.call-float:hover,
.live-chat-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Only make the glyphs inside floats more distinct (no size/position changes) */
.whatsapp-float i, .call-float i, .live-chat-float i {
    color: #ffffff !important;
    text-shadow: 0 8px 20px rgba(0,0,0,0.65);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}
.whatsapp-float svg, .call-float svg, .live-chat-float svg {
    fill: #ffffff !important;
    stroke: rgba(255,255,255,0.06) !important;
    stroke-width: 0.9px !important;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

/* Back to Top Button with Progress Circle */
.back-to-top {
    position: relative;
}

.back-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.back-to-top .progress-ring-bg {
    opacity: 0.3;
}

.back-to-top i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.back-to-top:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.3) !important;
}

/* Pulse animasyonu WhatsApp için */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Phone ring animasyonu */
@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* WhatsApp pulse animasyonu */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === CHAT MODAL === */
.chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.chat-modal.active {
    display: flex;
}

.chat-modal-content {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: slideUp 0.3s ease;
}

.chat-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-modal-close:hover {
    background: rgba(255,255,255,0.03);
    color: var(--secondary-color);
}

.chat-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chat-modal-header i {
    font-size: 3.5rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.chat-modal-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.chat-modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.chat-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-modal-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-modal-btn i {
    font-size: 1.8rem;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--dark-color);
}

.btn-yellow:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 217, 61, 0.4);
}

.btn-green {
    background: #25D366;
    color: white;
}

.btn-green:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-purple {
    background: var(--purple);
    color: white;
}

.btn-purple:hover {
    background: #5A2677;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 46, 143, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    /* Desktop menüyü gizle */
    .nav-menu {
        display: none;
    }

    /* Mobil menü toggle butonunu göster */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobilde header ayarları */
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 10001;
        transition: background 0.3s ease;
    }
    
    /* Mobil menü açıkken header görünümü */
    body:has(.mobile-menu-overlay.active) .header {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }
    
    /* Mobil menü açıkken hamburger menü beyaz */
    .mobile-menu-toggle.active span {
        background: var(--white);
    }
    
    /* Mobil menü overlay aktif */
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }

    /* Quick Quote Form Mobile */
    .quick-quote-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-header h2 {
        font-size: 1.8rem;
    }

    /* Float Buttons Mobile */
    .live-chat-float {
        width: 150px;
        height: 50px;
        font-size: 0.9rem;
        left: 15px;
        bottom: 20px;
    }

    /* Mobilde: Telefon üstte, WhatsApp altta */
    .call-float {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        right: 15px;
        bottom: 90px !important;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        right: 15px;
        bottom: 25px !important;
    }

    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 155px !important;
        right: 15px !important;
    }
    
    .back-to-top .progress-ring {
        width: 45px !important;
        height: 45px !important;
    }
    
    .back-to-top .progress-ring circle {
        r: 19;
        cx: 22.5;
        cy: 22.5;
        stroke-width: 2.5;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        right: 20px;
    }

    .call-float {
        bottom: 20px;
    }

    .whatsapp-float {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-card,
    .service-card,
    .value-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-question span i:first-child {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-cta {
        padding: 1.5rem 1rem;
    }

    .faq-cta p:first-child {
        font-size: 1.1rem;
    }

    .faq-contact-buttons {
        flex-direction: column;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Trust Badges Mobile */
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-badge {
        padding: 1rem;
    }

    .trust-badge i {
        font-size: 2rem;
    }

    .trust-badge h4 {
        font-size: 0.95rem;
    }
}

/* === CUSTOMER AVATARS === */
.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Customer Photos */
.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.male-avatar {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.female-avatar {
    background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.customer-photo:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.customer-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
}

/* Avatar Colors */
.avatar-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.avatar-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.avatar-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.avatar-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

/* Hover Effects */
.customer-avatar:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Service Placeholders */
.service-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 15px;
}

.service-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.service-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    z-index: 1;
    position: relative;
}

.service-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    z-index: 1;
    position: relative;
}

/* Service Type Colors */
.home-moving {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.office-moving {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.intercity-moving {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.packaging-service {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.support-service {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.about-company {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%);
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.company-stats div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
    position: relative;
}

/* Service Icon Colors */
.icon-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.icon-time {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.icon-support {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.icon-package {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}

.icon-office {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.icon-travel {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-color) 100%) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .customer-photo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-placeholder {
        height: 250px;
    }
    
    .service-placeholder i {
        font-size: 3rem;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== Last-resort global overrides (end of file) ===== */
/* Force backgrounds dark and text white for any remaining elements on public pages */
body, html {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Inputs, textareas, selects - dark theme */
input, textarea, select, .form-control {
    background: #0b0b0b !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.04) !important;
}

/* Tables and captions */
table, th, td {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.04) !important;
}

/* Buttons that used white backgrounds previously -> make dark/colored */
button, .btn, .btn-outline, .btn-primary, .btn-outline-white {
    color: #ffffff !important;
}

/* Ensure any inline style color gets overridden on public pages */
main *[style*="color:"], header *[style*="color:"], footer *[style*="color:"], section *[style*="color:"] {
    color: #ffffff !important;
}

/* Preserve accent colored links but ensure visibility */
a, a * { color: var(--accent-color) !important; }

/* Small utility for stat badges */
.stat-badge { background: #0b0b0b !important; color: #fff !important; }

/* End of last-resort rules */

/* Final footer-specific override to ensure footer text uses accent color while preserving brand white */
footer .footer-section,
footer .footer-section *,
footer .footer-bottom,
footer .footer-bottom * {
    color: var(--accent-color) !important;
}
footer .brand-preserve { color: #ffffff !important; }
footer .footer-section ul li a { color: var(--accent-color) !important; }

