/* Aslan Asansör - Modern CSS Styles */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #0D0D0D; /* main background dark */
    --secondary-color: #ffffff; /* main text color */
    --accent-color: #D40000; /* red accent for elevator industry */
    --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: #D40000; /* also red for consistency */
    --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: var(--accent-color) !important; /* red circular background */
    color: #ffffff !important; /* white icons */
    border-radius: 50% !important; /* circular shape */
    margin: 0 auto 1rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure service icons are white in red circular backgrounds */
.services-section .service-icon i,
.service-card .service-icon i,
.modern-services .service-icon i {
    color: #ffffff !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; }
}

/* Floating contact FAB that opens multiple shortcuts */
.floating-contact-menu {
    position: fixed;
    bottom: 22px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 1100;
}

.floating-contact-toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-color), #ff6b3a);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-contact-toggle:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.floating-contact-toggle.is-open {
    transform: rotate(45deg) scale(1.03);
    background: linear-gradient(135deg, #D40000, #ff3333);
}

.floating-contact-options {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-contact-options.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-contact-option {
    background: rgba(16, 17, 23, 0.95);
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: inherit;
}

.floating-contact-option .contact-option-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.floating-contact-option strong {
    font-size: 1rem;
}

.floating-contact-option .contact-option-text span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.floating-call-option .contact-option-icon {
    background: linear-gradient(135deg, #D40000, #ff3333);
    color: #fff;
}

.floating-call-option strong {
    color: #D40000;
}

.floating-call-option .contact-option-text > span {
    color: rgba(255, 255, 255, 0.95) !important;
}

.floating-contact-addresses .address-heading {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.floating-contact-addresses .address-links {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.floating-contact-addresses .address-links a {
    padding: 0.35rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    display: block;
    text-align: left;
}

.floating-contact-addresses .address-links a:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.floating-contact-addresses .address-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.floating-contact-addresses .address-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

@media (max-width: 480px) {
    .floating-contact-menu {
        right: 12px;
        bottom: 12px;
    }
    .floating-contact-options {
        width: 220px;
    }
}

@media (max-width: 768px) {
    body,
    body h1,
    body h2,
    body h3,
    body h4,
    body h5,
    body h6,
    body p,
    body span,
    body a,
    body li,
    button,
    label,
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle,
    .stat-label,
    .stat-number,
    .testimonial-card,
    .company-stats-section h2,
    .company-stats-section p,
    .testimonials-section h2,
    .testimonials-section p {
        text-align: center !important;
    }

    .hero-contact-cards,
    .contact-methods-grid,
    .service-areas-grid,
    .footer-services-grid,
    .footer-bottom,
    .map-overlay .map-info,
    .contact-form-wrapper,
    .contact-form-container,
    .form-actions,
    .testimonials-grid,
    .stats-grid,
    .company-stats-section .container,
    .testimonials-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service-card .service-content,
    .contact-method-card,
    .service-card,
    .contact-details,
    .footer-bottom,
    .map-info,
    .working-hours-section,
    .hero-text,
    .hero-stats,
    .stat-box,
    .testimonial-card,
    .section-header {
        align-items: center;
        text-align: center !important;
        justify-content: center;
    }

    .btn,
    .service-action,
    .contact-link,
    .floating-contact-option,
    .address-links a {
        justify-content: center;
    }
}


/* 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 {
    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 */
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    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 */
}

/* Header text colors - white/light grey with red links only */
.header, .header * {
    color: #ffffff !important;
}

.header .logo {
    color: #ffffff !important;
}

.header .logo i {
    color: var(--accent-color) !important;
}

.nav-menu a {
    color: #e6e6e6 !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--accent-color) !important;
    color: #ffffff !important;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.25rem;
}

.logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo image specific fixes */
.logo .logo-image,
.logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
    max-width: none !important;
    min-height: 40px !important;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: none !important;
}

.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, .logo .logo-image {
        height: 30px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        object-fit: contain !important;
    }
    .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;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .logo-img, .logo .logo-image {
        height: 26px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        object-fit: contain !important;
    }
    .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;
    color: #ffffff !important;
}

/* 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: #ffffff !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 */
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    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; }
.mobile-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 { transition: transform 220ms ease, box-shadow 220ms ease; }
.whatsapp-float:hover, .call-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 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(212, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 0 auto 1.5rem;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 0, 0, 0.3);
}

.stat-plus {
    font-size: 2rem;
    color: var(--yellow);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}

/* === 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.3rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.testimonial-rating i {
    color: #FFD700 !important;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.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;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.testimonial-author .author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.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;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6) !important;
    font-style: normal;
}

.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: 2px solid rgba(255,255,255,0.3) !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 .btn.btn-outline-white span,
.cta-section .btn.btn-outline-white small,
.cta-section a[href^="tel:"] i,
.cta-section a[href^="tel:"] span,
.cta-section a[href^="tel:"] small { 
    color: #ffffff !important; 
}

.cta-section .btn.btn-primary,
.cta-section .btn-cta {
    color: #ffffff !important;
}

.cta-section .btn.btn-primary i,
.cta-section .btn.btn-primary span,
.cta-section .btn.btn-primary small,
.cta-section .btn-cta i,
.cta-section .btn-cta span,
.cta-section .btn-cta small {
    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;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .logo img, .logo-img, .logo .logo-image {
        height: 34px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        object-fit: contain !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: #000000 !important;
    color: #ffffff !important;
}

.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: 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-section {
    padding: 5rem 0;
    background: #000000 !important;
    color: #ffffff !important;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.form-content, .contact-info {
    background: #2b2b2b !important;
    padding: 2.5rem;
    border-radius: 15px;
    color: #ffffff !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    border: 1px solid rgba(255,255,255,0.04);
}

.form-header, .contact-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3, .contact-header h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p, .contact-header p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: #ffffff !important;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details p, .contact-details a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    margin: 0;
}

.contact-details a:hover {
    color: var(--accent-color) !important;
}

.phone-number {
    font-weight: 600 !important;
    color: #ffffff !important;
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 600;
}

.emergency-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 0, 0, 0.1);
    border: 1px solid rgba(212, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

.emergency-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--accent-color) !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.9rem;
    margin: 0;
}

.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,
.contact-form input::placeholder,
.contact-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;
    color: #ffffff !important;
}

.footer-section h3 i {
    color: #ffffff !important;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.footer-section p {
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Footer styling: başlıklar ve yazılar beyaz/açık gri, sadece linkler kırmızı */
.footer-section, .footer-bottom {
    color: #ffffff !important;
}
.footer-section h3, .footer-bottom p {
    color: #ffffff !important;
}
.brand-preserve {
    color: #ffffff !important;
    font-weight: 800;
}
.footer-section ul li a {
    color: var(--accent-color) !important;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #ffffff !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.8) !important;
}

/* === FLOAT BUTTONS === */
/* Arama butonu (üstte - WhatsApp'ın üstünde - Desktop) */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 140px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9b4a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(212, 0, 0, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: phoneRing 2s ease-in-out infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 0, 0, 0.6);
}

/* WhatsApp butonu (altta - Desktop) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #1ebc58 100%) !important;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 0, 0, 0.6);
}

/* Mobile responsive float buttons */
@media (max-width: 768px) {
    .call-float {
        width: 56px;
        height: 56px;
        bottom: 120px;
        right: 15px;
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 55px;
        right: 15px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .call-float {
        width: 52px;
        height: 52px;
        bottom: 110px;
        right: 12px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 50px;
        right: 12px;
        font-size: 1.5rem;
    }
}

/* Icon styling for better visibility */
.whatsapp-float i, .call-float i {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 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);
    }
}


.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;
        -webkit-backdrop-filter: none;
        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 */

    /* 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 */
.elevator-installation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.elevator-maintenance {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.elevator-modernization {
    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: başlıklar ve yazılar beyaz/açık gri, sadece linkler kırmızı */
footer .footer-section h3,
footer .footer-section h4,
footer .footer-section p,
footer .footer-bottom p {
    color: #ffffff !important;
}
footer .brand-preserve {
    color: #ffffff !important;
}
footer .footer-section ul li a {
    color: var(--accent-color) !important;
}
footer .footer-section ul li a:hover {
    color: #ffffff !important;
}

/* ===== MODERN HERO SECTION (GÖRSELDEKI GİBİ) ===== */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
    overflow: hidden;
    color: #ffffff;
}

/* ===== ANIMATED LOGO BACKGROUND ===== */
.logo-animation-container {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    opacity: 0.3;
}

.animated-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    animation: logoRotate 8s linear infinite;
    box-shadow: 0 0 30px rgba(212,0,0,0.4);
    z-index: 3;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(212,0,0,0.3);
    border-radius: 50%;
    animation: ringRotate 12s linear infinite;
}

.logo-ring:nth-child(1) {
    width: 180px;
    height: 180px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.logo-ring:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-duration: 20s;
    border-color: rgba(255,255,255,0.2);
}

.logo-ring:nth-child(3) {
    width: 260px;
    height: 260px;
    animation-duration: 25s;
    animation-direction: reverse;
    border-color: rgba(212,0,0,0.2);
}

.logo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.logo-particle:nth-child(4) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.logo-particle:nth-child(5) {
    top: 70%;
    right: 25%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.logo-particle:nth-child(6) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.logo-particle:nth-child(7) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.logo-particle:nth-child(8) {
    bottom: 20%;
    right: 40%;
    animation-delay: 3s;
    animation-duration: 6s;
}

@keyframes logoRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.9;
    }
}

/* Responsive adjustments for logo animation */
@media (max-width: 1024px) {
    .logo-animation-container {
        width: 250px;
        height: 250px;
        right: 5%;
    }
    
    .animated-logo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .logo-ring:nth-child(1) { width: 150px; height: 150px; }
    .logo-ring:nth-child(2) { width: 180px; height: 180px; }
    .logo-ring:nth-child(3) { width: 210px; height: 210px; }
}

@media (max-width: 768px) {
    .logo-animation-container {
        display: none;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.elevator-visual {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    width: 400px;
    height: 550px;
    opacity: 0.4;
}

.elevator-shaft {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 15px;
    box-shadow:
        inset 0 0 30px rgba(0,0,0,0.7),
        0 15px 40px rgba(0,0,0,0.5),
        0 0 0 2px rgba(255,255,255,0.1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.elevator-doors {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 65%;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.door {
    flex: 1;
    background: linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 50%, #2a2a2a 100%);
    border: 1px solid #666;
    position: relative;
    transition: transform 0.3s ease;
}

.door-left {
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #444;
}

.door-right {
    border-radius: 0 8px 8px 0;
    border-left: 1px solid #444;
}

.door::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, #888 0%, #555 100%);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.elevator-shaft:hover .door-left {
    transform: translateX(-2px);
}

.elevator-shaft:hover .door-right {
    transform: translateX(2px);
}

.elevator-lights {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.light {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-color);
    animation: elevatorLight 3s infinite;
    border: 1px solid rgba(255,255,255,0.2);
}

.light:nth-child(2) { animation-delay: 0.75s; }
.light:nth-child(3) { animation-delay: 1.5s; }
.light:nth-child(4) { animation-delay: 2.25s; }

@keyframes elevatorLight {
    0%, 85% {
        opacity: 0.2;
        background: #444;
        box-shadow: 0 0 3px rgba(255,255,255,0.1);
    }
    15% {
        opacity: 1;
        background: var(--accent-color);
        box-shadow: 0 0 12px var(--accent-color);
    }
}

.modern-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary.btn-hero {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
}

.btn-primary.btn-hero:hover {
    background: #ff4444;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,0,0,0.4);
}

.btn-outline-white.btn-hero {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white.btn-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* ===== MODERN SERVICES SECTION ===== */
.modern-services {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.modern-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.modern-services .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modern-services .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65) !important;
    max-width: 600px;
    margin: 0 auto;
}

.modern-services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet için 2x2 düzen */
@media (max-width: 1024px) {
    .modern-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Küçük tablet için hala 2x2 */
@media (max-width: 768px) {
    .modern-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .modern-services .service-card {
        padding: 1.8rem;
    }
    
    .modern-services .service-card h3 {
        font-size: 1.25rem;
    }
    
    .modern-services .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }
}

/* Çok küçük ekranlar için bile 2x2 korunur */
@media (max-width: 480px) {
    .modern-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .modern-services .service-card {
        padding: 1.2rem;
    }
    
    .modern-services .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .modern-services .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .modern-services .service-card ul li {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .modern-services .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.modern-services .service-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #151515 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.modern-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212,0,0,0.08) 0%, rgba(212,0,0,0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-services .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff6b6b 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-services .service-card:hover::before {
    opacity: 1;
}

.modern-services .service-card:hover::after {
    opacity: 1;
}

.modern-services .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212,0,0,0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,0,0,0.1);
}

.modern-services .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff4444 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212,0,0,0.25);
    position: relative;
}

.modern-services .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-services .service-card:hover .service-icon {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212,0,0,0.5);
}

.modern-services .service-card:hover .service-icon::before {
    opacity: 1;
}

.modern-services .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.modern-services .service-card:hover h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(212,0,0,0.3);
}

.modern-services .service-card p {
    color: rgba(255,255,255,0.75) !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.modern-services .service-card:hover p {
    color: rgba(255,255,255,0.85) !important;
}

.modern-services .service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.modern-services .service-card ul li {
    color: rgba(255,255,255,0.65) !important;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.modern-services .service-card ul li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.modern-services .service-card:hover ul li {
    color: rgba(255,255,255,0.8) !important;
    transform: translateX(3px);
}

.modern-services .service-card:hover ul li::before {
    transform: scale(1.2);
}

/* ===== PROJECTS GALLERY SECTION ===== */
.projects-gallery {
    padding: 6rem 0;
    background: #0a0a0a;
    color: #ffffff;
}

.projects-gallery .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-gallery .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.projects-gallery .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.project-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-header p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: #0a0a0a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212,0,0,0.1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-submit {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,0,0,0.4);
}

.contact-info {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item div strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item div p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .elevator-visual {
        width: 320px;
        height: 420px;
        left: 10%;
        opacity: 0.3;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .form-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .stats-grid .stat-item:nth-child(1),
    .stats-grid .stat-item:nth-child(2) {
        grid-row: 1;
    }
    
    .stats-grid .stat-item:nth-child(3),
    .stats-grid .stat-item:nth-child(4) {
        grid-row: 2;
    }
    
    .stats-grid .stat-item:nth-child(5),
    .stats-grid .stat-item:nth-child(6) {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-services .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-content,
    .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .modern-services .service-card,
    .form-content,
    .contact-info {
        padding: 1.5rem;
    }
    
    .modern-services .section-title,
    .projects-gallery .section-title {
        font-size: 2rem;
    }
}


/* ===== PROJECT ELEVATOR VISUALS ===== */
.project-elevator {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Lüks Konut Projesi - Elevator Visual 1 */
.elevator-visual-1 {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
}

.elevator-building {
    width: 200px;
    height: 250px;
    position: relative;
}

.building-floors {
    width: 150px;
    height: 100%;
    background: linear-gradient(180deg, #34495e 0%, #2c3e50 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.building-floors .floor {
    height: 25%;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    position: relative;
}

.building-floors .floor::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212,0,0,0.5);
}

.elevator-shaft-project {
    position: absolute;
    right: -30px;
    top: 20px;
    width: 40px;
    height: 200px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.elevator-car {
    width: 30px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff4444 100%);
    border-radius: 4px;
    position: absolute;
    left: 5px;
    top: 80px;
    animation: elevatorMove1 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(212,0,0,0.4);
}

.elevator-cables {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #666 0%, #444 100%);
}

@keyframes elevatorMove1 {
    0%, 100% { top: 150px; }
    50% { top: 20px; }
}

/* Alışveriş Merkezi - Elevator Visual 2 */
.elevator-visual-2 {
    background: linear-gradient(135deg, #666666 0%, #4a4a4a 100%);
}

.shopping-mall {
    width: 220px;
    height: 260px;
    position: relative;
}

.mall-structure {
    width: 180px;
    height: 100%;
    background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.mall-floor {
    height: 33.33%;
    border-bottom: 3px solid rgba(255,255,255,0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.mall-floor::before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212,0,0,0.6);
}

.mall-floor::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.escalator-system {
    position: absolute;
    right: -25px;
    top: 30px;
    width: 50px;
    height: 200px;
}

.escalator {
    width: 25px;
    height: 180px;
    background: linear-gradient(45deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    position: relative;
    animation: escalatorMove 3s linear infinite;
}

.escalator::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        var(--accent-color) 0px,
        var(--accent-color) 5px,
        transparent 5px,
        transparent 10px
    );
    animation: escalatorSteps 1s linear infinite;
}

.elevator-group {
    position: absolute;
    right: 0;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.elevator-unit {
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
    border-radius: 3px;
    animation: elevatorMove2 3.5s ease-in-out infinite;
    box-shadow: 0 3px 10px rgba(255,255,255,0.4);
}

.elevator-unit:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes escalatorMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes escalatorSteps {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes elevatorMove2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

/* Hastane - Elevator Visual 3 */
.elevator-visual-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.hospital-building {
    width: 200px;
    height: 250px;
    position: relative;
}

.hospital-structure {
    width: 160px;
    height: 100%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.hospital-floor {
    height: 33.33%;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medical-cross {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: crossPulse 2s ease-in-out infinite;
}

.medical-elevator {
    position: absolute;
    right: -30px;
    top: 40px;
    width: 45px;
    height: 160px;
}

.stretcher-elevator {
    width: 35px;
    height: 50px;
    background: linear-gradient(180deg, #ffffff 0%, #ecf0f1 100%);
    border-radius: 6px;
    position: relative;
    animation: medicalElevatorMove 5s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.stretcher-elevator::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    font-size: 18px;
    font-weight: bold;
}

.emergency-lights {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.emergency-lights .light {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

.emergency-lights .light.active {
    opacity: 1;
    animation: emergencyBlink 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212,0,0,0.8);
}

@keyframes crossPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes medicalElevatorMove {
    0%, 100% { top: 100px; }
    33% { top: 40px; }
    66% { top: 70px; }
}

@keyframes emergencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive adjustments for project visuals */
@media (max-width: 768px) {
    .project-elevator {
        transform: scale(0.8);
    }
    
    .elevator-building,
    .shopping-mall,
    .hospital-building {
        width: 160px;
        height: 200px;
    }
    
    .building-floors,
    .mall-structure,
    .hospital-structure {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .project-elevator {
        transform: scale(0.7);
    }
}


/* === FOOTER STYLES === */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: #ffffff !important;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* Footer text colors - white/light grey with red links only */
.footer, .footer * {
    color: #e6e6e6 !important;
}

.footer h3, .footer h4 {
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.footer .brand-preserve {
    color: #ffffff !important;
}

.footer a {
    color: var(--accent-color) !important;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff6b6b !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section .contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-section .contact-info i {
    color: var(--accent-color) !important;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: #e6e6e6 !important;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #e6e6e6 !important;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Float buttons */
.whatsapp-float, .call-float {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff !important;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-float {
    right: 20px;
    background: #25D366;
}

.call-float {
    right: 90px;
    background: var(--accent-color);
}

.whatsapp-float:hover, .call-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Form wrapper grid adjustment - eşit boyutlar */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* === SERVICES PAGE - 2 COLUMN GRID === */
.services-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-detailed {
    background: #2b2b2b !important;
    color: #ffffff !important;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff9b4a);
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.08);
}

.service-card-detailed .service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.service-card-detailed h2 {
    font-size: 1.4rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Service title ve subtitle */
.service-card-detailed .service-title {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card-detailed .service-subtitle {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-card-detailed .service-descriptions {
    margin-bottom: 2rem;
}

.service-card-detailed .service-descriptions p {
    color: rgba(255,255,255,0.88) !important;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-detailed .service-descriptions p:last-child {
    margin-bottom: 0;
}

.service-card-detailed .btn {
    background: var(--accent-color);
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-detailed .btn span,
.service-card-detailed .btn i {
    color: #ffffff !important;
}

.service-card-detailed .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: #ffffff !important;
}

.service-card-detailed .btn-outline-primary span,
.service-card-detailed .btn-outline-primary i {
    color: #ffffff !important;
}

.service-card-detailed .btn:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,0,0,0.3);
}

/* Responsive design for services grid */
@media (max-width: 900px) {
    .services-grid-2col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-detailed {
        padding: 1.5rem;
    }
    
    .service-card-detailed .service-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card-detailed h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .service-card-detailed {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-card-detailed h2 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .service-card-detailed .service-descriptions p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .service-card-detailed .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-card-detailed .service-badge {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

/* Animation for service cards */
.service-card-detailed.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card-detailed.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for multiple cards */
.services-grid-2col .service-card-detailed:nth-child(1) { transition-delay: 0ms; }
.services-grid-2col .service-card-detailed:nth-child(2) { transition-delay: 100ms; }
.services-grid-2col .service-card-detailed:nth-child(3) { transition-delay: 200ms; }
.services-grid-2col .service-card-detailed:nth-child(4) { transition-delay: 300ms; }
.services-grid-2col .service-card-detailed:nth-child(5) { transition-delay: 400ms; }
.services-grid-2col .service-card-detailed:nth-child(6) { transition-delay: 500ms; }
.services-grid-2col .service-card-detailed:nth-child(7) { transition-delay: 600ms; }
.services-grid-2col .service-card-detailed:nth-child(8) { transition-delay: 700ms; }
.services-grid-2col .service-card-detailed:nth-child(9) { transition-delay: 800ms; }
.services-grid-2col .service-card-detailed:nth-child(10) { transition-delay: 900ms; }


/* === PROCESS SECTION - 5 COLUMNS === */
.process-grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.process-grid-5col .process-step {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-grid-5col .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.65) !important;
}

.process-grid-5col .process-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.process-grid-5col .process-icon {
    font-size: 2rem;
    color: #ffffff !important;
    margin: 0.8rem 0;
}

.process-grid-5col .process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    font-weight: 600;
}

.process-grid-5col .process-step p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive for 5 column process grid */
@media (max-width: 1200px) {
    .process-grid-5col {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .process-grid-5col .process-step:nth-child(4),
    .process-grid-5col .process-step:nth-child(5) {
        grid-column: span 1;
    }
    
    .process-grid-5col .process-step:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .process-grid-5col .process-step:nth-child(5) {
        grid-column: 3 / 4;
    }
}

@media (max-width: 900px) {
    .process-grid-5col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-grid-5col .process-step:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .process-grid-5col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-grid-5col .process-step {
        padding: 1.25rem 1rem;
    }
    
    .process-grid-5col .process-step:nth-child(5) {
        grid-column: 1;
        max-width: none;
    }
}


/* === ABOUT PAGE STYLES === */

/* Company Introduction Section */
.company-intro-section {
    padding: 4rem 0;
    background: #000000 !important;
    color: #ffffff !important;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95) !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-text p {
    color: rgba(255,255,255,0.88) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-milestone {
    background: #2b2b2b !important;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-milestone:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.milestone-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color) !important;
    margin-bottom: 0.5rem;
}

.milestone-text {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    font-size: 1rem;
}

/* Mission Vision Values Grid */
.mission-vision-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.mvv-card h3 {
    font-size: 1.4rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mvv-card p {
    color: rgba(255,255,255,0.88) !important;
    line-height: 1.6;
}

/* Strengths Section */
.strengths-section {
    padding: 4rem 0;
    background: #000000 !important;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.strength-card {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.strength-card h4 {
    font-size: 1.3rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.strength-card p {
    color: rgba(255,255,255,0.88) !important;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), #ff9b4a);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.timeline-content {
    flex: 1;
    background: #2b2b2b !important;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0 2rem;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.timeline-content h4 {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: rgba(255,255,255,0.88) !important;
    margin: 0;
    line-height: 1.6;
}

/* About Stats Grid */
.about-stats-section {
    padding: 4rem 0;
    background: #000000 !important;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .strengths-grid,
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .company-milestone {
        flex: 1;
        margin: 0 0.5rem;
    }
    
    .milestone-year {
        font-size: 2rem;
    }
    
    .strengths-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0 0 0 1rem;
    }
}

@media (max-width: 600px) {
    .intro-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-milestone {
        margin: 0;
    }
    
    .mvv-card,
    .strength-card {
        padding: 1.5rem;
    }
    
    .mvv-icon,
    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


/* === CONTACT PAGE STYLES === */

/* Contact Hero Section */
.contact-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff !important;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.2rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text .lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color) !important;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8) !important;
    margin-top: 0.25rem;
}

.hero-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-priority-card {
    background: #2b2b2b !important;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-priority-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.priority-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.contact-priority-card h3 {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-priority-card p {
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 4rem 0;
    background: #000000 !important;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-method-card {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #ffffff !important;
}

.phone-icon { background: linear-gradient(135deg, var(--accent-color), #ff6b6b); }
.whatsapp-icon { background: linear-gradient(135deg, #25D366, #1ebc58); }
.email-icon { background: linear-gradient(135deg, #4285f4, #34a853); }
.location-icon { background: linear-gradient(135deg, #ff9800, #f57c00); }

.contact-method-card h3 {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-method-card p {
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-link {
    display: block;
    color: var(--accent-color) !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b6b !important;
}

.contact-address {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.5;
}

.method-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9) !important;
}

.benefit-item i {
    color: var(--accent-color) !important;
}

.contact-form-container {
    background: #2b2b2b !important;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}

.modern-contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.modern-contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.modern-contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modern-contact-form label i {
    color: var(--accent-color) !important;
    width: 16px;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    background: #1a1a1a !important;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffffff !important;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212,0,0,0.1);
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

.modern-contact-form small {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,0,0,0.3);
}

.form-note {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--accent-color) !important;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e !important;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444 !important;
}

.alert i {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.alert div strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Service Areas Section */
.service-areas-section {
    padding: 4rem 0;
    background: #000000 !important;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.area-card {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #ffffff !important;
}

.area-card h3 {
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.area-card p {
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.area-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.area-badge {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}

.map-wrapper {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(43,43,43,0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    max-width: 300px;
}

.map-info h4 {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.map-info p {
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Working Hours Section */
.working-hours-section {
    padding: 4rem 0;
    background: #000000 !important;
}

.working-hours-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hours-info h2 {
    color: #ffffff !important;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2b2b2b !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.day {
    color: #ffffff !important;
    font-weight: 600;
}

.time {
    color: var(--accent-color) !important;
    font-weight: 700;
}

.emergency-note {
    background: rgba(212,0,0,0.1);
    border: 1px solid rgba(212,0,0,0.3);
    padding: 1rem;
    border-radius: 8px;
    color: rgba(255,255,255,0.9) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.emergency-note i {
    color: var(--accent-color) !important;
    font-size: 1.2rem;
}

.hours-visual {
    text-align: center;
}

.clock-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #ffffff !important;
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.availability-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #2b2b2b !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.badge-item i {
    color: var(--accent-color) !important;
    width: 20px;
    text-align: center;
}

.badge-item span {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-methods-grid,
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .contact-hero-content,
    .working-hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .modern-contact-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .clock-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Scroll to form smooth behavior */
.scroll-to-form {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}


/* === HOMEPAGE ENHANCEMENTS === */

/* Company Stats Section */
.company-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff !important;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header .section-title {
    font-size: 2.2rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stats-header .section-subtitle {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff9b4a);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(212, 0, 0, 0.3);
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white !important;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(212, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.stat-desc {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 4rem 0;
    background: #000000 !important;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff !important;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.why-content h3 {
    color: #ffffff !important;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.why-content p {
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.6;
}

.why-choose-visual {
    text-align: center;
}

.experience-badge {
    background: #2b2b2b !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
}

.badge-year {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color) !important;
    margin-bottom: 0.5rem;
}

.badge-text {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
}

.quality-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    background: #2b2b2b !important;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.indicator i {
    color: var(--accent-color) !important;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.indicator span {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #FFD700 !important;
    font-size: 1.1rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.author-info h4 {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9rem;
}

/* Service Areas Homepage */
.service-areas-homepage {
    padding: 4rem 0;
    background: #000000 !important;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.area-item {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.area-item .area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.area-item h3 {
    color: #ffffff !important;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.area-item p {
    color: var(--accent-color) !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.area-item ul {
    list-style: none;
    padding: 0;
}

.area-item ul li {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.area-item ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Responsive Design for Homepage Enhancements */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid,
    .testimonials-grid,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-item {
        margin-bottom: 2rem;
    }
    
    .contact-wrapper,
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .stat-item,
    .testimonial-card,
    .area-item {
        padding: 1.5rem;
    }
    
    .stat-icon,
    .why-icon,
    .area-item .area-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .badge-year {
        font-size: 2.5rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Animation Enhancements */
.stat-item.animate-on-scroll,
.why-item.animate-on-scroll,
.testimonial-card.animate-on-scroll,
.area-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.animate-on-scroll.in-view,
.why-item.animate-on-scroll.in-view,
.testimonial-card.animate-on-scroll.in-view,
.area-item.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.stats-grid .stat-item:nth-child(1) { transition-delay: 0ms; }
.stats-grid .stat-item:nth-child(2) { transition-delay: 100ms; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 200ms; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 300ms; }
.stats-grid .stat-item:nth-child(5) { transition-delay: 400ms; }
.stats-grid .stat-item:nth-child(6) { transition-delay: 500ms; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 150ms; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 300ms; }

.areas-grid .area-item:nth-child(1) { transition-delay: 0ms; }
.areas-grid .area-item:nth-child(2) { transition-delay: 100ms; }
.areas-grid .area-item:nth-child(3) { transition-delay: 200ms; }
.areas-grid .area-item:nth-child(4) { transition-delay: 300ms; }


/* ===== BLOG SAYFASI STİLLERİ ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Blog Hero Section */
.blog-hero-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-text .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-stats {
    display: flex;
    gap: 2rem;
}

.blog-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Blog Filters Section */
/* Blog Scroll Progress Bar */
.blog-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff4444);
    width: 0%;
    z-index: 99999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212,0,0,0.5);
}

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23D40000" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.4;
}

.blog-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.blog-title-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.blog-title-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.blog-stats {
    display: flex;
    gap: 2rem;
}

.blog-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.blog-stats .stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.blog-stats .stat-content {
    display: flex;
    flex-direction: column;
}

.blog-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.blog-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

/* Blog Arama Kutusu */
.blog-search-box {
    position: relative;
    z-index: 1;
}

.search-form {
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 15px 50px rgba(212,0,0,0.4);
    transform: translateY(-2px);
}

.search-input-wrapper i.fa-search {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 0.75rem 0;
}

.search-input-wrapper input::placeholder {
    color: rgba(0,0,0,0.4);
}

.search-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a80000 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(212,0,0,0.4);
}

.search-btn i {
    transition: transform 0.3s ease;
}

.search-btn:hover i {
    transform: translateX(3px);
} */
.blog-filters-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.filters-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.filters-header {
    text-align: center;
    margin-bottom: 3rem;
}

.filters-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.filters-header h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.filters-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Kategori Kartları */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff4444);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before,
.category-card.active::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212,0,0,0.15);
    border-color: var(--accent-color);
}

.category-card.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a80000 100%);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(212,0,0,0.5);
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(212,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(212,0,0,0.2);
    flex-shrink: 0;
}

.category-card.active .category-icon {
    background: rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.category-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.category-card.active .category-icon i {
    color: white;
    transform: scale(1.1);
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    flex-shrink: 0;
    line-height: 1.3;
}

.category-card.active h4 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(212,0,0,0.6);
}

.category-count {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9) !important;
    display: block;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.category-card.active .category-count {
    color: rgba(255,255,255,1) !important;
    font-weight: 700;
}

/* Aktif Filtreler */
.active-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: #2b2b2b;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.filter-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.filter-tag {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a80000 100%);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(212,0,0,0.2);
}

.filter-tag i {
    font-size: 0.85rem;
}

.remove-filter {
    background: rgba(255,255,255,0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
}

.remove-filter:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.clear-all-filters {
    background: #6c757d;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.clear-all-filters:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: #2b2b2b !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,0,0,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212,0,0,0.5);
    border-color: rgba(212,0,0,0.4);
}

/* Blog Kart Görsel Alanı */
.blog-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-image::before {
    content: '\f1ea';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
}

.category-badge-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #a80000 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212,0,0,0.4);
    z-index: 2;
}

.reading-time-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.reading-time-badge i {
    color: var(--accent-color);
}

.blog-card-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7) !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.blog-meta i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-color) !important;
}

.blog-excerpt {
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-footer {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(212,0,0,0.1);
    border-radius: 25px;
}

.read-more-btn:hover {
    gap: 0.8rem;
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.blog-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212,0,0,0.4);
}

/* No Posts Message */
.no-posts-message {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.no-posts-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212,0,0,0.5);
}

.no-posts-message h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.no-posts-message p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Pagination Section */
.pagination-section {
    padding: 60px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.pagination-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pagination-info span:first-child {
    font-weight: 600;
    color: #ffffff;
}

.total-posts {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    background: rgba(212,0,0,0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,0,0,0.4);
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a80000 100%);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,0,0,0.4);
}

/* Blog Sayfası Mobil Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 60px 0 40px;
    }
    
    .blog-header-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .blog-title-section h1 {
        font-size: 2rem;
    }
    
    .blog-title-section p {
        font-size: 1rem;
    }
    
    .blog-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .blog-stats .stat-item {
        flex: 1;
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
        gap: 0.75rem;
    }
    
    .search-input-wrapper input {
        text-align: center;
        padding: 0.5rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .category-card {
        padding: 1.25rem 0.875rem;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1.4rem;
    }
    
    .category-card h4 {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .category-count {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .popular-posts-section {
        padding: 40px 0;
    }
    
    .popular-posts-section .section-title {
        font-size: 1.75rem;
    }
    
    .popular-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .popular-post-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .popular-post-rank {
        width: 45px;
        height: 45px;
        font-size: 1.15rem;
        left: 15px;
    }
    
    .popular-post-title a {
        font-size: 1.15rem;
    }
    
    .popular-post-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
}

/* Popüler Blog Yazıları Section */
.popular-posts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
}

.popular-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Blog Bildirim Sistemi */
.blog-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.blog-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.blog-notification.success {
    border-color: #28a745;
}

.blog-notification.success i {
    color: #28a745;
}

.blog-notification.error {
    border-color: var(--accent-color);
}

.blog-notification.error i {
    color: var(--accent-color);
}

.blog-notification.info {
    border-color: #17a2b8;
}

.blog-notification.info i {
    color: #17a2b8;
}

.blog-notification i {
    font-size: 1.2rem;
}

.blog-notification span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Popüler Blog Yazıları Section */
.popular-posts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
}

.popular-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.popular-posts-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.popular-posts-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.popular-posts-section .section-title i {
    color: var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.popular-posts-section .section-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.popular-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.popular-post-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    border: 2px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.popular-post-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.popular-post-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212,0,0,0.4);
}

.popular-post-rank {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #a80000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(212,0,0,0.5);
}

.popular-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popular-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.popular-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.popular-post-meta i {
    color: var(--accent-color);
}

.popular-post-title {
    margin: 1rem 0;
}

.popular-post-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.popular-post-title a:hover {
    color: var(--accent-color);
}

.popular-post-excerpt {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.popular-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.popular-post-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.popular-read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.popular-read-more:hover {
    gap: 0.7rem;
}

.popular-read-more i {
    transition: transform 0.3s ease;
}

.popular-read-more:hover i {
    transform: translateX(3px);
}

/* Blog Sayfası Mobil Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 60px 0 40px;
    }
    
    .blog-header-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .blog-title-section h1 {
        font-size: 2rem;
    }
    
    .blog-title-section p {
        font-size: 1rem;
    }
    
    .blog-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .blog-stats .stat-item {
        flex: 1;
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
        gap: 0.75rem;
    }
    
    .search-input-wrapper input {
        text-align: center;
        padding: 0.5rem;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-card h4 {
        font-size: 0.95rem;
    }
    
    .category-count {
        font-size: 0.85rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 430px) {
    .blog-header {
        padding: 40px 0 30px;
    }
    
    .blog-title-section h1 {
        font-size: 1.75rem;
    }
    
    .blog-stats {
        width: 100%;
    }
    
    .blog-stats .stat-item {
        padding: 0.875rem 1rem;
    }
    
    .blog-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .blog-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 1rem 0.75rem;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .category-card h4 {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .category-count {
        font-size: 0.8rem;
    }
    
    .blog-search-box {
        padding: 0 0.75rem;
    }
    
    .search-input-wrapper {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.625rem;
        align-items: stretch;
    }
    
    .search-input-wrapper i.fa-search {
        display: none;
    }
    
    .search-input-wrapper input {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
        text-align: left;
        border-radius: 8px;
        background: rgba(255,255,255,0.98);
    }
    
    .search-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        border-radius: 8px;
    }
    
    .filters-header h3 {
        font-size: 1.5rem;
    }
    
    .active-filters {
        padding: 1rem;
    }
    
    .filter-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .blog-card-image {
        height: 160px;
    }
    
    .blog-card-image::before {
        font-size: 3rem;
    }
    
    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
    
    .blog-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 0.875rem 1.25rem;
    }
    
    .popular-posts-section {
        padding: 30px 0;
    }
    
    .popular-posts-section .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .popular-posts-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .popular-posts-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .popular-post-card {
        padding: 1.25rem 1rem 1rem;
    }
    
    .popular-post-rank {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -12px;
        left: 12px;
    }
    
    .popular-post-meta {
        gap: 0.75rem;
    }
    
    .popular-post-meta span {
        font-size: 0.8rem;
    }
    
    .popular-post-title a {
        font-size: 1.05rem;
    }
    
    .popular-post-excerpt {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .popular-post-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .popular-post-date {
        font-size: 0.8rem;
    }
    
    .popular-read-more {
        font-size: 0.875rem;
        align-self: stretch;
        justify-content: center;
        padding: 0.625rem 1rem;
        background: rgba(212,0,0,0.1);
        border-radius: 8px;
    }
}

/* Blog Features Section */
.blog-features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Animasyonlar */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Responsive Design */
@media (max-width: 1024px) {
    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .blog-stats {
        justify-content: center;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-topic {
        margin-left: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-numbers {
        order: -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-hero-section,
    .blog-posts-section,
    .blog-features-section {
        padding: 60px 0;
    }
    
    .modern-filter-form {
        padding: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-footer {
        padding: 0 1rem 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .feature-card,
    .feature-item {
        padding: 1.5rem;
    }
}


/* === LOGO VISIBILITY FIX === */
/* Logo görünürlük sorunu için güçlü CSS kuralları */
.logo,
.logo .logo-image,
.logo img,
.nav-wrapper .logo,
.nav-wrapper .logo .logo-image,
.nav-wrapper .logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}

.logo .logo-image,
.logo img {
    height: 40px !important;
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    image-rendering: auto !important;
    filter: none !important;
    transform: none !important;
    clip: none !important;
    clip-path: none !important;
    mask: none !important;
    background: none !important;
    border: none !important;
    outline: none !important;
}

/* Mobil responsive logo fixes */
@media (max-width: 768px) {
    .logo .logo-image,
    .logo img {
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .logo .logo-image,
    .logo img {
        height: 30px !important;
    }
}

@media (max-width: 360px) {
    .logo .logo-image,
    .logo img {
        height: 26px !important;
    }
}


/* === MODERN HERO SECTION === */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-logo-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 1;
}

.logo-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.logo-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoRotate 20s linear infinite;
}

.logo-inner {
    text-align: center;
    color: #ffffff;
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.logo-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-delay: 1s;
}

.ring-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    animation-delay: 2s;
}

.logo-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.particle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 1s; }
.particle:nth-child(4) { bottom: 35%; right: 10%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 60%; left: 5%; animation-delay: 2s; }
.particle:nth-child(6) { top: 70%; right: 25%; animation-delay: 2.5s; }

.elevator-visual {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    z-index: 1;
}

.elevator-shaft {
    width: 80px;
    height: 300px;
    background: linear-gradient(180deg, #333, #222);
    border-radius: 10px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.elevator-doors {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    display: flex;
}

.door {
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #cc0000);
    animation: doorOpen 4s ease-in-out infinite;
}

.door-left {
    border-radius: 5px 0 0 5px;
    transform-origin: left;
}

.door-right {
    border-radius: 0 5px 5px 0;
    transform-origin: right;
    animation-delay: 0.1s;
}

.elevator-lights {
    position: absolute;
    right: 10px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: lightBlink 2s ease-in-out infinite;
}

.light:nth-child(1) { animation-delay: 0s; }
.light:nth-child(2) { animation-delay: 0.5s; }
.light:nth-child(3) { animation-delay: 1s; }
.light:nth-child(4) { animation-delay: 1.5s; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* === PROJECTS GALLERY === */
.projects-gallery {
    padding: 6rem 0;
    background: #111111;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #2b2b2b;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.project-image {
    height: 250px;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* === COMPANY STATS === */
.company-stats-section {
    padding: 6rem 0;
    background: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: #2b2b2b;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* === HERO ANIMATIONS === */
@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 1; }
}

@keyframes doorOpen {
    0%, 70% { transform: scaleX(1); }
    85% { transform: scaleX(0.1); }
    100% { transform: scaleX(1); }
}

@keyframes lightBlink {
    0%, 50% { background: rgba(255, 255, 255, 0.3); }
    25% { background: var(--accent-color); box-shadow: 0 0 10px var(--accent-color); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .elevator-visual {
        left: 5%;
        width: 280px;
        height: 380px;
        opacity: 0.25;
    }
}

/* === SERVICE AREAS HOMEPAGE === */
.service-areas-homepage {
    padding: 6rem 0;
    background: #111111;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-item {
    background: #2b2b2b;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.area-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.area-item p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.area-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-item li {
    color: rgba(255,255,255,0.8);
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

/* === TESTIMONIALS GRID === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #2b2b2b !important;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.04) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8) !important;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFD700 !important;
    font-size: 1rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.9) !important;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.author-info h4 {
    color: #ffffff !important;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem;
}

/* === WHY CHOOSE CONTENT === */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-content h3 {
    color: #ffffff !important;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.why-content p {
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.6;
}

.why-choose-visual {
    background: #2b2b2b;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.experience-badge {
    background: var(--accent-color);
    color: #ffffff;
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.badge-year {
    font-size: 2.5rem;
    font-weight: 900;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
}

.quality-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
}

.indicator i {
    color: var(--accent-color) !important;
    font-size: 1.2rem;
}

.indicator span {
    color: #ffffff !important;
    font-weight: 600;
}

/* === GALERİ SAYFASI MOBİL OPTİMİZASYONLARI === */

/* Galeri ana bölümü */
.gallery-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff !important;
    text-align: center;
}

.gallery-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gallery-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Galeri kategorileri */
.gallery-categories {
    padding: 60px 0 40px;
    background: #000000 !important;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    padding: 12px 24px;
    background: #2b2b2b !important;
    color: rgba(255,255,255,0.8) !important;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,0,0,0.3);
}

/* Galeri ana grid */
.gallery-main {
    padding: 40px 0 80px;
    background: #000000 !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-card {
    background: #2b2b2b !important;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.08);
}

.image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .image-container img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-type {
    color: var(--accent-color) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lightbox modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #2b2b2b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lightbox-close:hover {
    background: #ff4444;
    transform: scale(1.1);
}

/* Case studies bölümü */
.case-studies {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    background: #2b2b2b !important;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff9b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.case-study h3 {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.case-content > div {
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.case-content h4 {
    color: var(--accent-color) !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-content p {
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.6;
    margin: 0;
}

/* MOBİL RESPONSIVE DÜZENLEMELER */
@media (max-width: 768px) {
    /* Hero bölümü */
    .gallery-hero {
        padding: 60px 0 40px;
    }
    
    .gallery-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .gallery-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Kategori filtreleri */
    .gallery-categories {
        padding: 40px 0 20px;
    }
    
    .category-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }
    
    /* Galeri grid */
    .gallery-main {
        padding: 20px 0 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-card {
        margin-bottom: 1rem;
    }
    
    .image-container {
        height: 200px;
    }
    
    .gallery-caption {
        padding: 1.25rem;
    }
    
    .gallery-caption h4 {
        font-size: 1.1rem;
    }
    
    .project-type {
        font-size: 0.8rem;
    }
    
    /* Case studies */
    .case-studies {
        padding: 60px 0;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    .case-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .case-study h3 {
        font-size: 1.3rem;
    }
    
    /* Lightbox */
    .lightbox-content {
        width: 95%;
        max-width: 95%;
        padding: 0;
    }
    
    .lightbox-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .gallery-hero {
        padding: 40px 0 30px;
    }
    
    .gallery-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .gallery-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Kategoriler */
    .gallery-categories {
        padding: 30px 0 15px;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 80px;
        max-width: 100px;
    }
    
    /* Galeri */
    .gallery-main {
        padding: 15px 0 30px;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .image-container {
        height: 180px;
    }
    
    .gallery-caption {
        padding: 1rem;
    }
    
    .gallery-caption h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .project-type {
        font-size: 0.75rem;
    }
    
    /* Case studies */
    .case-studies {
        padding: 40px 0;
    }
    
    .case-study {
        padding: 1.25rem;
    }
    
    .case-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .case-study h3 {
        font-size: 1.2rem;
    }
    
    .case-content > div {
        padding: 0.75rem;
    }
    
    .case-content h4 {
        font-size: 1rem;
    }
    
    .case-content p {
        font-size: 0.9rem;
    }
    
    /* Lightbox */
    .lightbox-content {
        width: 98%;
        margin: 1%;
    }
    
    .lightbox-close {
        top: -8px;
        right: -8px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 360px) {
    .gallery-hero .hero-title {
        font-size: 1.6rem;
    }
    
    .filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 70px;
        max-width: 90px;
    }
    
    .image-container {
        height: 160px;
    }
    
    .gallery-caption {
        padding: 0.75rem;
    }
    
    .gallery-caption h4 {
        font-size: 0.95rem;
    }
    
    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .case-study h3 {
        font-size: 1.1rem;
    }
}

/* Galeri animasyonları */
.gallery-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-card.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animasyonları */
.gallery-grid .gallery-card:nth-child(1) { transition-delay: 0ms; }
.gallery-grid .gallery-card:nth-child(2) { transition-delay: 100ms; }
.gallery-grid .gallery-card:nth-child(3) { transition-delay: 200ms; }
.gallery-grid .gallery-card:nth-child(4) { transition-delay: 300ms; }
.gallery-grid .gallery-card:nth-child(5) { transition-delay: 400ms; }
.gallery-grid .gallery-card:nth-child(6) { transition-delay: 500ms; }
.gallery-grid .gallery-card:nth-child(7) { transition-delay: 600ms; }
.gallery-grid .gallery-card:nth-child(8) { transition-delay: 700ms; }

/* === ANA SAYFA İSTATİSTİK KARTLARI DÜZELTMESİ === */

/* Ana sayfa istatistik bölümü için özel düzenlemeler */
.stats-section {
    padding: 4rem 0;
    background: #000000 !important;
    color: #ffffff !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: #2b2b2b !important;
    color: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff9b4a);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color) !important;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PROJE KATEGORİLERİ BÖLÜMÜ DÜZELTMESİ === */

.project-categories-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    color: #ffffff !important;
}

.project-categories-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-categories-section .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === GALERI SAYFA BAŞLIĞI DÜZELTMESİ === */

.page-galeri .page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff !important;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-galeri .page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-galeri .page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9) !important;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === CONTENT VISIBILITY DÜZELTMESİ === */

main {
    min-height: 100vh;
    background: #000000 !important;
    color: #ffffff !important;
}

.page-content {
    min-height: calc(100vh - 200px);
    background: #000000 !important;
}

/* === MOBİL RESPONSIVE DÜZELTMELERİ === */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .page-galeri .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-galeri .page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .page-galeri .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-galeri .page-header p {
        font-size: 1rem;
    }
}

/* === MOBILE SPECIFIC FIXES (iPhone 14 Pro Max & Similar) === */
@media (max-width: 430px) {
    /* Logo ve Header Düzeltmeleri */
    .logo-image {
        max-width: 140px !important;
        height: auto !important;
    }
    
    .navbar-logo {
        padding: 0.5rem 0 !important;
    }
    
    /* Hero Section Mobil Düzeltme */
    .modern-hero {
        min-height: 70vh !important;
        padding: 3rem 0 2rem !important;
    }
    
    .hero-content {
        padding: 1rem !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .btn-hero {
        width: 100% !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Stats Section Mobil */
    .company-stats-section {
        padding: 2.5rem 0 !important;
    }
    
    .stats-header .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .stats-header .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        padding: 0 1rem !important;
    }
    
    .stat-item {
        padding: 1.75rem 1.25rem !important;
    }
    
    .stat-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stat-number {
        font-size: 2.2rem !important;
    }
    
    .stat-label {
        font-size: 0.95rem !important;
    }
    
    .stat-desc {
        font-size: 0.8rem !important;
    }
    
    /* Services Section Mobil */
    .modern-services {
        padding: 2.5rem 0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem !important;
    }
    
    .service-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 2.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
    }
    
    /* Testimonials Mobil */
    .testimonials-section {
        padding: 2.5rem 0 !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
    }
    
    .testimonial-rating i {
        font-size: 1.1rem !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        padding-left: 1rem !important;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem !important;
        top: -5px !important;
    }
    
    /* Contact Form Mobil */
    .contact-form-section {
        padding: 2.5rem 0 !important;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .form-content,
    .contact-info {
        padding: 1.5rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer Mobil */
    .footer {
        padding: 2rem 0 1rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    /* Mobile Menu Düzeltmeleri */
    .mobile-menu-btn {
        padding: 0.5rem !important;
        font-size: 1.5rem !important;
    }
    
    .mobile-menu-panel {
        width: 85% !important;
        max-width: 320px !important;
    }
    
    /* Container Padding Mobil */
    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    /* Section Spacing */
    section {
        padding: 2rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    /* Stats Grid Mobil - Tek Sütun */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .stat-item {
        padding: 1.25rem 1rem !important;
        gap: 0.5rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
    }
    
    .stat-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
        box-shadow: 0 6px 15px rgba(212, 0, 0, 0.3) !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .stat-label {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
    }
    
    .stat-desc {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        opacity: 0.85 !important;
    }
    
    .company-stats-section {
        padding: 2rem 0 !important;
    }
    
    .stats-header .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stats-header .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    /* Why Choose Section Mobil */
    .why-choose-section {
        padding: 2.5rem 0 !important;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr !important;
    }
    
    .why-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .why-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.3rem !important;
        margin: 0 auto !important;
    }
    
    .why-content h3 {
        font-size: 1.1rem !important;
    }
    
    .why-content p {
        font-size: 0.9rem !important;
    }
    
    /* Service Areas Mobil */
    .service-areas-homepage {
        padding: 2.5rem 0 !important;
    }
    
    .areas-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .area-item {
        padding: 1.5rem !important;
    }
    
    .area-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.5rem !important;
    }
    
    /* Projects Gallery Mobil */
    .projects-gallery {
        padding: 2.5rem 0 !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .project-card {
        margin-bottom: 1rem !important;
    }
    
    /* Animasyonları Mobilde Devre Dışı Bırak */
    .hero-logo-animation,
    .elevator-visual,
    .logo-particles {
        display: none !important;
    }
    
    /* Smooth Scroll Fix */
    html {
        scroll-behavior: smooth !important;
        overflow-x: hidden !important;
    }
    
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Floating Buttons Mobil Düzeltme (430px) */
    .whatsapp-float,
    .call-float {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.4rem !important;
        z-index: 9999 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important;
        border: none !important;
    }
    
    /* WhatsApp butonu en altta */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        background: linear-gradient(135deg, #25D366 0%, #1ebc58 100%) !important;
    }
    
    /* Arama butonu WhatsApp'ın hemen üstünde - aynı right pozisyonunda */
    .call-float {
        bottom: 86px !important;
        right: 20px !important;
        background: linear-gradient(135deg, #D40000 0%, #ff3333 100%) !important;
    }
    
    .whatsapp-float i,
    .call-float i {
        font-size: 1.5rem !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    }
    
    /* Hover efektleri mobilde */
    .whatsapp-float:active,
    .call-float:active {
        transform: scale(0.95) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
    }
    
    /* Butonların üzerine tıklanabilir alan ekle */
    .whatsapp-float::before,
    .call-float::before {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 50%;
    }
}

/* === TABLET LANDSCAPE FIX === */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* === BLOG SECTION === */
.blog-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #171717 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 122, 24, 0.2);
    border-color: rgba(255, 122, 24, 0.3);
}

.blog-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 122, 24, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.blog-title {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #FF7A18;
}

.blog-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF7A18;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
    color: #FF9D42;
}

.blog-view-all {
    text-align: center;
    margin-top: 3rem;
}

.no-blog-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.no-blog-message i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.no-blog-message p {
    font-size: 1.1rem;
    margin: 0;
}

/* Blog Detay Sayfası - Beyaz Başlık */
.blog-detail .blog-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.95) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212,0,0,0.2);
}

.blog-detail .blog-meta span {
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.9rem;
}

.blog-detail .blog-meta i {
    color: var(--accent-color);
}

.blog-detail .blog-title {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    line-height: 1.3;
}

.blog-detail .blog-description {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .blog-detail .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-section {
        padding: 3rem 0;
    }
}
