/* 
 * Oto Çekici Platformu - Glassmorphism & Mobile Responsive Design System
 * CSS3 Modern Styling
 */

:root {
    --primary-color: #0f172a;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    --emergency-red: #ef4444;
    --success-green: #10b981;
    --card-bg: rgba(255, 255, 255, 0.92);
    --glass-bg: rgba(15, 23, 42, 0.75);
    --border-color: rgba(255, 255, 255, 0.15);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Global Reset & Typography */
html {
    height: 100%;
    background-color: #ffffff !important;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    font-family: var(--font-main);
    color: #334155;
    background-color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    background-color: #ffffff !important;
}

footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    background-color: #0f172a !important;
    border-bottom: none !important;
}

/* Light Theme Utilities */
.page-hero-light {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding: 50px 0;
}

.bg-emerald-soft {
    background-color: rgba(16, 185, 129, 0.12) !important;
}

.text-emerald {
    color: #059669 !important;
}

.border-emerald-subtle {
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

.max-w-700 {
    max-width: 700px;
}

/* Prevent iOS Zoom on Input Focus */
input, select, textarea, button {
    font-size: 16px !important;
}

/* Navigation Bar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar-brand span {
    letter-spacing: -0.5px;
}

/* Hero Section & Custom Slider */
.hero-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ========================================================
 * Custom Hero Slider (Reference UI with Right 3-Tabs)
 * ======================================================== */
.custom-hero-slider {
    position: relative;
    width: 100%;
    min-height: 580px;
    height: 75vh;
    max-height: 700px;
    background-color: #0b1120;
    overflow: hidden;
    user-select: none;
}

.custom-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.custom-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5 !important;
    pointer-events: auto !important;
}

/* Background Image with Left-to-Right Animation */
.custom-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08) translateX(-35px);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    pointer-events: none;
}

.custom-slide.active .custom-slide-bg {
    transform: scale(1) translateX(0);
}

/* Dark Tinted Modern Overlay */
.custom-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 17, 32, 0.90) 0%, rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.38) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content Container */
.custom-slide-content-wrap {
    position: relative;
    z-index: 3;
    padding-left: 55px;
    max-width: 680px;
}

/* Slogan Badge with Left-to-Right Entrance */
.custom-slide-slogan {
    display: inline-block;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.custom-slide.active .custom-slide-slogan {
    opacity: 1;
    transform: translateX(0);
}

/* Big Hero Heading */
.custom-slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.custom-slide.active .custom-slide-title {
    opacity: 1;
    transform: translateX(0);
}

.custom-slide-title .text-accent-styled {
    color: #2dd4bf;
    font-family: inherit;
    font-style: italic;
    font-weight: 700;
}

/* CTA Button */
.custom-slide-btn {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease 0.45s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
}

.custom-slide.active .custom-slide-btn {
    opacity: 1;
    transform: translateX(0);
}

/* Navbar Top Call Button (Sharp Green) */
.btn-nav-call {
    background: #10b981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border-radius: 0px !important;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-nav-call:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

/* Navbar Instagram Follow Button */
.btn-nav-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    border-radius: 0px !important;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-nav-instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8a3ab9 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

.btn-hero-green {
    display: inline-flex;
    align-items: center;
    background: #10b981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
    color: #ffffff !important;
}

/* Left Edge Vertical Navigation Controls */
.custom-slider-nav-arrows {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.slider-nav-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.slider-nav-circle-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffffff;
    transform: scale(1.1);
    color: #ffffff;
}

/* Right Side Individual Floating White Buttons (Vertically Centered) */
.custom-slider-tabs-box {
    position: absolute;
    right: 4%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 50 !important;
    pointer-events: auto !important;
    width: 290px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tab-nav-item {
    position: relative;
    padding: 14px 18px;
    background: #ffffff;
    color: #1e293b;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
    border: 2px solid transparent;
}

.tab-nav-item:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateX(-6px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(245, 158, 11, 0.4);
}

.tab-nav-item .tab-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #334155;
    transition: all 0.3s ease;
}

.tab-nav-item .tab-text-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tab-nav-item .tab-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.tab-nav-item .tab-arrow-indicator {
    font-size: 0.95rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

/* Active Button (White with Amber/Brand Accent Glow) */
.tab-nav-item.active {
    background: #ffffff !important;
    border-color: #f59e0b !important;
    transform: translateX(-10px);
    box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.35), 0 0 0 1px #f59e0b;
}

.tab-nav-item.active .tab-icon-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #f59e0b;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.tab-nav-item.active .tab-title {
    color: #d97706 !important;
    font-weight: 800;
}

.tab-nav-item.active .tab-arrow-indicator {
    color: #f59e0b !important;
    transform: translateX(3px);
}

/* Mobile Slide Dot Indicators */
.custom-slider-mobile-dots {
    position: absolute;
    bottom: 24px;
    left: 20px;
    z-index: 20;
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-mobile-dot {
    width: 22px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-mobile-dot.active {
    width: 36px;
    background: #10b981;
}

/* Responsive Slider Breakpoints */
@media (max-width: 991.98px) {
    .custom-hero-slider {
        height: 380px !important;
        min-height: 360px !important;
        max-height: 420px !important;
    }

    .custom-slide-overlay {
        background: linear-gradient(180deg, rgba(11, 17, 32, 0.65) 0%, rgba(15, 23, 42, 0.82) 100%) !important;
    }

    .custom-slide-content-wrap {
        padding-left: 12px !important;
        padding-right: 12px !important;
        max-width: 100% !important;
        text-align: left;
    }

    .custom-slide-slogan {
        font-size: 0.82rem !important;
        letter-spacing: 1.8px !important;
        margin-bottom: 10px !important;
    }

    .custom-slide-title {
        font-size: 2.2rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .btn-hero-green {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        padding: 12px 26px !important;
        border-radius: 12px !important;
        width: auto !important;
        max-width: 290px !important;
    }

    .custom-slider-nav-arrows {
        display: none !important;
    }

    .custom-slider-mobile-dots {
        display: none !important;
    }

    .custom-slider-tabs-box {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .custom-hero-slider {
        height: 360px !important;
        min-height: 340px !important;
        max-height: 390px !important;
    }

    .custom-slide-title {
        font-size: 1.95rem !important;
        line-height: 1.22 !important;
        margin-bottom: 18px !important;
    }

    .btn-hero-green {
        font-size: 0.98rem !important;
        padding: 11px 22px !important;
    }
}

/* ========================================================
 * Quick Call Card & Form Styling (Light Theme)
 * ======================================================== */
.glass-call-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.glass-call-card .form-label {
    color: #1e293b !important;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.glass-call-card .form-control,
.glass-call-card .form-select {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.95rem !important;
    color: #0f172a;
}

.glass-call-card .form-control:focus,
.glass-call-card .form-select:focus {
    background-color: #ffffff;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.btn-black-tow {
    background: #0f172a;
    background: linear-gradient(135deg, #1e293b 0%, #0b1120 100%);
    color: #ffffff !important;
    border: 1px solid #1e293b;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.btn-black-tow:hover {
    background: #000000;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

/* ========================================================
 * Custom Service Cards (Reference UI Layout)
 * ======================================================== */
.custom-service-card {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.custom-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.09);
    border-color: #cbd5e1;
}

/* Image Box */
.custom-service-img-box {
    height: 190px;
    width: 100%;
    background: #f1f5f9;
}

.custom-service-img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-service-card:hover .custom-service-img {
    transform: scale(1.07);
}

/* Ribbon (Title + Plus Button) */
.custom-service-ribbon {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    min-height: 52px;
}

.service-ribbon-title {
    background: #f1f5f9;
    padding: 10px 16px;
}

.service-card-heading {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.custom-service-card:hover .service-card-heading {
    color: #0d9488;
}

/* Plus Button on the right */
.service-ribbon-btn {
    width: 50px;
    min-width: 50px;
    background: #14b8a6; /* Teal / Turquoise matching reference */
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.custom-service-card:hover .service-ribbon-btn {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    transform: rotate(90deg);
}

/* Body & Footer */
.custom-service-desc {
    line-height: 1.6;
    color: #64748b;
}

.custom-service-footer {
    color: #475569;
    transition: all 0.2s ease;
}

.footer-link-text {
    font-size: 0.88rem;
    color: #475569;
    transition: color 0.2s ease;
}

.footer-arrow-icon {
    font-size: 0.95rem;
    transition: transform 0.3s ease, color 0.2s ease;
}

.custom-service-card:hover .footer-link-text {
    color: #0d9488;
}

.custom-service-card:hover .footer-arrow-icon {
    transform: translateX(5px);
    color: #0d9488;
}

/* ========================================================
 * About Us Section (Reference UI Layout)
 * ======================================================== */
.about-image-wrapper {
    position: relative;
    padding-right: 0;
}

.about-img-frame {
    max-height: 480px;
    height: 100%;
}

.about-main-img {
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.03);
}

/* Floating Round Blue Stamp (matching reference screenshot circle) */
.about-floating-stamp {
    position: absolute;
    right: -25px;
    top: 45%;
    transform: translateY(-50%);
    width: 135px;
    height: 135px;
    background: #2b42b6;
    background: radial-gradient(circle, #2b42b6 0%, #1e3a8a 100%);
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(43, 66, 182, 0.45);
    z-index: 5;
    animation: pulse-stamp 3s ease-in-out infinite alternate;
}

@keyframes pulse-stamp {
    0% { transform: translateY(-50%) scale(1); }
    100% { transform: translateY(-50%) scale(1.04); }
}

.stamp-svg-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate-stamp 25s linear infinite;
}

@keyframes rotate-stamp {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stamp-center-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.stamp-center-icon {
    color: #2dd4bf;
    font-size: 1.6rem;
}

/* About Typography */
.about-subtitle-tag {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-main-heading {
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.about-desc-paragraphs {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.8;
}

/* More Button */
.btn-about-more {
    background: #2b42b6;
    background: linear-gradient(135deg, #2b42b6 0%, #1e3a8a 100%);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(43, 66, 182, 0.35);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-about-more:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(43, 66, 182, 0.5);
}

/* Phone Call CTA in About */
.about-phone-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.about-phone-icon-circle:hover {
    background: #10b981;
    color: #ffffff;
    transform: scale(1.1);
}

.about-phone-number {
    font-size: 1.15rem;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.about-phone-number:hover {
    color: #2b42b6;
}

/* ========================================================
 * Horizontal Statistics Bar (Modern Light Theme)
 * ======================================================== */
.horizontal-stats-section {
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    position: relative;
    padding: 50px 0;
}

.stat-modern-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 22px 20px 22px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-modern-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-5px);
    box-shadow: 0 16px 30px -8px rgba(15, 23, 42, 0.08), 0 6px 12px -4px rgba(15, 23, 42, 0.03);
}

.stat-modern-card:hover::before {
    opacity: 1;
}

.stat-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: transform 0.3s ease;
}

.stat-icon-wrap.stat-icon-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.stat-icon-wrap.stat-icon-blue {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.stat-icon-wrap.stat-icon-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.stat-icon-wrap.stat-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
}

.stat-modern-card:hover .stat-icon-wrap {
    transform: scale(1.1) rotate(4deg);
}

.stat-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.6;
}

.stat-badge-dot.bg-emerald {
    background-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.stat-badge-dot.bg-blue {
    background-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.stat-badge-dot.bg-amber {
    background-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.stat-badge-dot.bg-purple {
    background-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.stat-number {
    font-size: 2.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
}

/* ========================================================
 * Customer Testimonials Section (Reference UI Layout)
 * ======================================================== */
.custom-testimonials-section {
    background: #f8fafc;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    padding: 70px 0;
}

.testi-watermark-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
}

.google-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.testi-section-tag {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testi-main-heading {
    color: #0f172a;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.25;
}

/* Trust Pill */
.testi-trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.testi-trust-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #14b8a6;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 18px rgba(20, 184, 166, 0.35);
}

.testi-trust-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.45;
}

/* Testimonial Nav Circle Buttons */
.testi-nav-btns {
    display: flex;
    gap: 12px;
}

.testi-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.testi-nav-btn:hover {
    background: #14b8a6;
    color: #ffffff;
    border-color: #14b8a6;
    transform: scale(1.08);
}

/* Right Side Slider Track */
.testi-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testi-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Testimonial Card */
.custom-testi-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 310px;
    max-width: 340px;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.custom-testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
    border-color: #cbd5e1;
}

/* Curved Teal Accent on Top Right */
.testi-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #14b8a6;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-bottom-left-radius: 35px;
    z-index: 1;
}

.testi-card-body {
    padding: 24px 24px 18px 24px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testi-stars {
    color: #10b981;
    font-size: 1rem;
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testi-comment-text {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Speech Bubble Notch */
.testi-bubble-notch {
    position: relative;
    height: 12px;
    background: #ffffff;
}

.testi-bubble-notch::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 36px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    z-index: 3;
}

/* Bottom Author Bar */
.testi-author-bar {
    background: #f1f5f9;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #e2e8f0;
}

.testi-author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testi-author-info {
    overflow: hidden;
}

.testi-author-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testi-source-label {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.2;
}

/* ========================================================
 * Quick Price Quote Section (Hemen Fiyat Alın! - Light Theme)
 * ======================================================== */
.custom-price-section {
    background-color: #f8fafc;
    position: relative;
}

.custom-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.custom-price-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(20, 184, 166, 0.12);
    color: #0d9488;
    border: 1px solid rgba(20, 184, 166, 0.25);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-price-title {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.custom-price-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.custom-price-input-grp .input-group-text {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-right: none;
    color: #0d9488;
    font-size: 1.1rem;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.custom-price-input-grp .form-control {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-size: 0.95rem !important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-price-input-grp .form-control:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.custom-price-textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #0f172a;
    font-size: 0.95rem !important;
}

.custom-price-textarea:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

/* Service Chips Grid */
.custom-service-chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.custom-chip-item {
    cursor: pointer;
    margin-bottom: 0;
    user-select: none;
}

.custom-chip-checkbox {
    display: none;
}

.custom-chip-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.custom-chip-box i {
    font-size: 1.1rem;
    color: #0d9488;
    transition: all 0.25s ease;
}

.custom-chip-item:hover .custom-chip-box {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.custom-chip-checkbox:checked + .custom-chip-box {
    background: rgba(20, 184, 166, 0.12);
    border-color: #14b8a6;
    color: #0f766e;
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.25);
}

.custom-chip-checkbox:checked + .custom-chip-box i {
    color: #0d9488;
    transform: scale(1.15);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .custom-hero-slider {
        height: auto;
        min-height: 560px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .custom-slide-content-wrap {
        padding-left: 20px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .custom-slide-title {
        font-size: 2.5rem;
    }

    .custom-slider-nav-arrows {
        left: 10px;
    }

    .custom-slider-tabs-box {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 15px;
        padding: 0 15px;
    }

    .tabs-vertical-card {
        flex-direction: row;
    }

    .tab-nav-item {
        flex: 1;
        padding: 12px 14px;
        font-size: 0.9rem;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: center;
        text-align: center;
    }

    .tab-nav-item:last-child {
        border-right: none;
    }

    .tab-nav-item .tab-pointer-notch {
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: none;
        border-bottom: 10px solid #1d4ed8;
    }
}

@media (max-width: 767.98px) {
    .hero-wrapper {
        padding: 40px 0 60px 0;
    }

    .glass-call-card {
        padding: 20px;
        border-radius: 18px;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .tabs-vertical-card {
        flex-direction: column;
    }

    .tab-nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: flex-start;
        padding: 14px 18px;
    }

    .tab-nav-item .tab-pointer-notch {
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #1d4ed8;
        border-left: none;
    }
}

@media (max-width: 575.98px) {
    .custom-slide-title {
        font-size: 1.85rem;
    }

    .custom-slide-slogan {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .btn-hero-green {
        font-size: 1rem;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
    }
}

/* Custom Square Checkbox for Price Quote */
.custom-service-checkbox {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease-in-out;
    user-select: none;
}
.custom-service-checkbox:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.8) !important;
}
.custom-square-checkbox {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    border-radius: 4px !important;
    border: 2px solid #f59e0b !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    cursor: pointer;
}
.custom-square-checkbox:checked {
    background-color: #f59e0b !important;
    border-color: #f59e0b !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

/* ========================================================
 * Process Timeline Section (Reference UI Layout)
 * ======================================================== */
.process-section {
    background: #ffffff;
    padding: 75px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.process-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.process-heading {
    color: #0f172a;
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.25;
}

.process-timeline-wrap {
    position: relative;
    margin-top: 55px;
}

/* Background Wavy SVG Line */
.process-svg-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 1;
    pointer-events: none;
}

.process-step-col {
    position: relative;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-circle-wrap {
    position: relative;
    width: 145px;
    height: 145px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer Concentric Arc Ring (Active Highlight) */
.process-arc-ring {
    position: absolute;
    top: -9px;
    left: -9px;
    right: -9px;
    bottom: -9px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
}

.process-arc-ring.arc-top {
    border-top-color: #00c875;
    border-left-color: #00c875;
    border-right-color: #00c875;
}

.process-arc-ring.arc-bottom {
    border-bottom-color: #00c875;
    border-left-color: #00c875;
    border-right-color: #00c875;
}

.process-step-col.active .process-arc-ring,
.process-step-col:hover .process-arc-ring {
    opacity: 1;
    transform: scale(1.02);
}

/* Main Circle */
.process-circle {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: #edf2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c875;
    font-size: 2.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Dynamic wave rays inside active circle */
.process-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 45%, transparent 70%);
    opacity: 0;
    transform: rotate(25deg);
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.process-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0px, rgba(255,255,255,0.12) 3px, transparent 3px, transparent 9px);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.process-step-col.active .process-circle,
.process-step-col:hover .process-circle {
    background: linear-gradient(135deg, #00c875 0%, #059669 100%);
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 200, 117, 0.38);
}

.process-step-col.active .process-circle::before,
.process-step-col.active .process-circle::after,
.process-step-col:hover .process-circle::before,
.process-step-col:hover .process-circle::after {
    opacity: 1;
}

/* Number Badges */
.process-badge {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
    border: 3px solid #ffffff;
    transition: all 0.35s ease;
}

/* Alternating positions matching reference */
.process-badge.badge-bl {
    bottom: 4px;
    left: 4px;
}

.process-badge.badge-tr {
    top: 4px;
    right: 4px;
}

.process-step-col.active .process-badge,
.process-step-col:hover .process-badge {
    transform: scale(1.12);
}

/* Step Title & Desc */
.process-step-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 14px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.process-step-col.active .process-step-title,
.process-step-col:hover .process-step-title {
    color: #00c875;
}

.process-step-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
    padding: 0 8px;
}

@media (max-width: 991.98px) {
    .process-svg-line {
        display: none;
    }

    .process-step-col {
        margin-bottom: 30px;
    }

    .process-circle-wrap {
        width: 125px;
        height: 125px;
    }

    .process-circle {
        width: 120px;
        height: 120px;
        font-size: 2.3rem;
    }

    .process-badge {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }

    .process-step-title {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   Modern Horizontal Cookie Consent Popup (Desktop Horizontal & Mobile Centered)
   ========================================================================== */
.cookie-popup-wrapper {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 180%);
    z-index: 1070;
    width: 92%;
    max-width: 760px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.cookie-popup-wrapper.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-popup-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20), 0 4px 14px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.cookie-popup-content-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-popup-icon-circle {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    border: 3px solid #fed7aa;
    background-color: #fffaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.cookie-exclamation-mark {
    color: #f97316;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    font-family: system-ui, -apple-system, sans-serif;
}

.cookie-popup-text-area {
    flex: 1;
    text-align: left;
}

.cookie-popup-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.12rem;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.cookie-popup-desc {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.cookie-popup-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.cookie-settings-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-settings-icon-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
    border-color: #94a3b8;
}

.cookie-popup-btn {
    background-color: #6366f1;
    color: #ffffff;
    border: none;
    padding: 9px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cookie-popup-btn:hover {
    background-color: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45);
}

.cookie-popup-btn:active {
    transform: scale(0.97);
}

@media (max-width: 767.98px) {
    .cookie-popup-wrapper {
        bottom: 14px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        transform: translateY(180%);
    }

    .cookie-popup-wrapper.visible {
        transform: translateY(0);
    }

    .cookie-popup-card {
        padding: 16px 16px;
        border-radius: 16px;
    }

    .cookie-popup-content-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-popup-icon-circle {
        margin: 0 auto;
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .cookie-popup-text-area {
        text-align: center;
    }

    .cookie-popup-title {
        font-size: 1.05rem;
    }

    .cookie-popup-desc {
        font-size: 0.84rem;
    }

    .cookie-popup-actions {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .cookie-popup-btn {
        flex: 1;
        max-width: 200px;
    }
}

/* ========================================================
 * High-End Corporate Footer Styles
 * ======================================================== */
.corporate-footer {
    background: linear-gradient(180deg, #0b1329 0%, #060b18 100%) !important;
    border-top: 2px solid rgba(245, 158, 11, 0.25) !important;
    position: relative;
}

.corporate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.6), transparent);
}

/* Footer Top Emergency CTA Ribbon */
.footer-cta-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.footer-cta-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: radial-gradient(circle at 100% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-icon-box {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animate-ring {
    animation: phoneRing 1.8s infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50% { transform: rotate(-12deg); }
    20%, 40% { transform: rotate(12deg); }
    60% { transform: rotate(0deg); }
}

/* Brand & Badges */
.footer-logo-badge {
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-about-text {
    line-height: 1.7;
}

.footer-pill-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.footer-pill-badge:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

/* Social Media Buttons */
.footer-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.footer-social-btn.whatsapp-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

/* Widget Titles */
.footer-widget-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: #f59e0b;
    border-radius: 2px;
}

/* Navigation List */
.footer-nav-list li {
    margin-bottom: 0.7rem;
}

.footer-nav-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-nav-list a:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

/* Contact Items */
.footer-contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.footer-contact-item:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.footer-contact-label {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-contact-val {
    font-size: 0.92rem;
    text-decoration: none;
    display: block;
    word-break: break-word;
}

/* Legal Links */
.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #fbbf24;
}

/* Footer Gallery 3x3 Compact Grid */
.footer-gallery-section {
    position: relative;
}

.footer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 210px;
    width: 100%;
}

.footer-gallery-item {
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-gallery-item:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .footer-cta-card {
        padding: 24px 20px !important;
        text-align: center;
    }
    .footer-cta-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    .footer-cta-icon-box {
        margin: 0 auto;
    }
    .footer-gallery-grid {
        max-width: 180px;
    }
}
/* ========================================================
 * Back to Top Square Blue Button
 * ======================================================== */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background-color: #2563eb;
    color: #ffffff !important;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
    transform: translateY(-3px);
}

.back-to-top-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 74px !important;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
}

/* ========================================================
 * Mobile Sticky Emergency Bottom Action Bar
 * ======================================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1040;
    padding: 8px 12px;
    gap: 8px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}

.mobile-sticky-btn {
    flex: 1;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mobile-sticky-btn i {
    font-size: 1rem;
}

.mobile-sticky-btn.btn-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
}

.mobile-sticky-btn.btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.mobile-sticky-btn.btn-tow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a !important;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.35);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px !important;
    }
}

