/* CSS Reset & Variables */
:root {
    --bg-color: #efefef; /* secondary light */
    --nav-bg: rgba(255, 255, 255, 0.95);
    --text-color: #2c2b2a; /* secondary dark */
    --hover-color: #e4051f; /* primary */
    --primary-color: #e4051f; /* primary */
    --primary-hover: #c4041a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background: linear-gradient(135deg, #ffffff 0%, #efefef 100%);
    min-height: 100vh;
}

/* --- Navbar Styles --- */

.navbar-wrapper {
    padding: 24px 20px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px); /* Glassmorphism touch */
    width: 100%;
    max-width: 1100px; /* Constraints width for large screens */
    height: 72px;
    padding: 0 28px;
    border-radius: 999px; /* The pill shape */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--hover-color);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    z-index: 1001; /* Above mobile menu if needed */
}

/* Desktop Menu Layout */
.navbar-menu {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

/* Links */
.navbar-links {
    display: flex;
    list-style: none;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

/* Micro-animation underneath active/hover link */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

/* Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Primary Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff3b4d 0%, #e4051f 100%);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(228, 5, 31, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e4051f 0%, #b80015 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 5, 31, 0.4);
}

/* Mobile Toggle */
.mobile-menu-btn {
    display: none;
    background: #f3f4f6; /* Visible pill toggle */
    border: none;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent; /* Remove mobile grey box */
}

.mobile-menu-btn:active {
    background-color: var(--primary-color);
    color: white;
    transform: scale(0.92);
}

.mobile-menu-btn:hover {
    background-color: #e5e7eb;
}

/* --- Mobile / Responsive Design --- */

@media (max-width: 900px) {
    /* Adjust pill size */
    .navbar {
        height: 64px;
        padding: 0 20px;
    }

    .navbar-logo span {
        font-size: 1.05rem;
    }
    
    .mobile-menu-btn {
        display: flex; /* Show hamburger */
    }
    
    /* Hide menu items by default, style for overlay */
    .navbar-menu {
        flex-direction: column;
        justify-content: flex-start;
        position: absolute;
        top: 85%; /* Relative to nav height for better alignment */
        left: 10px;
        right: 10px;
        background: #ffffff;
        padding: 40px 24px;
        border-radius: 28px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        gap: 32px;
        z-index: 1005;
        
        /* Faster Animation */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        transition: opacity 0.2s ease-out, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-origin: top center;
        pointer-events: none; /* Block clicks when hidden */
    }
    
    .navbar-menu.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(15px) scale(1);
        pointer-events: auto; /* Allow clicks when visible */
    }

    .navbar-links {
        position: static;
        transform: none;
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .navbar-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }
}

/* --- Branding & Hero Logo --- */
.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* --- Hero Slider --- */
.hero-section {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.heroSwiper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-banner {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Swiper custom styles */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* --- Endless Features Marquee --- */
.features-marquee {
    background-color: transparent;
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gradient mask for smooth fade in/out on edges */
.features-marquee::before,
.features-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.features-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.features-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 32px;
    padding-right: 32px; /* Key for seamless loop spacing */
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.05rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
    transition: var(--transition);
    cursor: default;
}

.feature-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(228, 5, 31, 0.12);
    border-color: rgba(228, 5, 31, 0.2);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* --- Express Info Cards Section --- */
.express-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.express-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: #ffffff;
    padding: 36px 48px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
}

.express-header-left {
    flex: 1;
    max-width: 500px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(228, 5, 31, 0.08); /* light red */
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-badge i {
    font-size: 1.2rem;
}

.express-header-left h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    font-weight: 800;
    line-height: 1.2;
}

.express-header-left h2 span {
    color: var(--primary-color);
}

.express-header-right {
    flex: 1;
    max-width: 400px;
    border-left: 2px solid rgba(0,0,0,0.05);
    padding-left: 40px;
}

.express-header-right p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.express-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}

.animal-card {
    background: #ffffff;
    border: 1.5px solid rgba(0,0,0,0.04);
    border-radius: 40px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.animal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(228, 5, 31, 0.15);
}

.popular-badge {
    position: absolute;
    top: 36px;
    right: 36px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(228, 5, 31, 0.3);
}

.animal-image-wrapper {
    background: #f8f9fa; /* Slightly off-white */
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 24px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.animal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* CSS MAGIC: the generated images have white backgrounds. 
       multiply blending mode makes white transparent against the #f8f9fa background! */
    mix-blend-mode: multiply; 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animal-card:hover .animal-image {
    transform: scale(1.05);
}

.animal-card-title {
    font-size: 1.7rem;
    color: #111827;
    font-weight: 800;
    margin-bottom: 8px;
}

.animal-card-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- About Bento Section --- */
.about-bento-section {
    padding: 80px 20px;
    background-color: var(--nav-bg);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.about-bento-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.about-header-text {
    flex: 1;
    max-width: 600px;
}

.about-header-text .subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.about-header-text h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    font-weight: 800;
    line-height: 1.2;
}

.about-header-text h2 span {
    color: var(--primary-color);
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* ratio from reference */
    gap: 24px;
}

.bento-image-card {
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative; /* Fix for grid height stretching */
}

.bento-image-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-content-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.bento-card {
    background-color: #f8f9fa; /* Light grey */
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0,0,0,0.04);
}

.bento-light-red {
    background-color: rgba(228, 5, 31, 0.04); /* very soft primary hue */
    border-color: rgba(228, 5, 31, 0.1);
}

.bento-card h4 {
    font-size: 1.35rem;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1; /* push link to bottom */
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 999px;
    width: fit-content;
    transition: var(--transition);
    background: transparent;
}

.bento-link:hover {
    background: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--primary-color);
}

/* --- Call to Action Section --- */
.cta-section {
    padding: 60px 20px;
    background-color: var(--nav-bg);
}

.cta-mini-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15); /* Soft blue shadow matching map pin */
    position: relative;
    overflow: hidden;
}

.cta-mini-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.cta-mini-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    font-size: 2.8rem;
    color: #3b82f6; /* Matching location pin */
    background: rgba(59, 130, 246, 0.1);
    padding: 16px;
    border-radius: 50%;
}

.cta-text h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 0;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366; /* WhatsApp Green */
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.btn-whatsapp-large i {
    font-size: 1.5rem;
}

.btn-whatsapp-large:hover {
    background-color: #1fad53;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

/* --- Footer Section --- */
.footer {
    background-color: #f9fafb; /* extremely pale gray */
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 80px 20px 40px 20px;
}

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

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

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

.footer-brand p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links ul li a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px); /* micro-interaction */
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact ul li i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-contact ul li a {
    color: #4b5563;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.social-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(228, 5, 31, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* --- Floating Action Buttons (FAB) --- */
.fab {
    position: fixed;
    bottom: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.fab:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Location Left */
.fab-location {
    left: 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); /* Maps Blue */
}

.fab-location:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

/* Contact Right */
.fab-contact-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.fab-contact {
    position: static;
    background: linear-gradient(135deg, #ff3b4d 0%, var(--primary-color) 100%);
}

.fab-contact:hover {
    box-shadow: 0 15px 30px rgba(228, 5, 31, 0.3);
}

/* FAB Toggle Menu */
.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
    transform-origin: bottom right;
}

.fab-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    white-space: nowrap;
}

.fab-menu-item i {
    font-size: 1.4rem;
}

.fab-menu-item.whatsapp i {
    color: #25D366; /* WhatsApp Green */
}

.fab-menu-item.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: transparent;
}

.fab-menu-item.whatsapp:hover i {
    color: white;
}

.fab-menu-item.phone i {
    color: #3b82f6; /* Call Blue */
}

.fab-menu-item.phone:hover {
    background: #3b82f6;
    color: white;
    border-color: transparent;
}

.fab-menu-item.phone:hover i {
    color: white;
}

@media (max-width: 768px) {
    .logo-image {
        height: 38px;
    }
    
    .hero-section {
        padding: 10px;
    }
    
    .heroSwiper {
        border-radius: 12px;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none !important; /* Hide arrows on mobile, rely on swipe */
    }
    
    .express-section {
        padding: 40px 20px;
    }
    
    .express-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }
    
    .express-header-right {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(0,0,0,0.05);
        padding-top: 20px;
    }
    
    .animal-image-wrapper {
        height: 280px;
    }
    
    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-image-card {
        min-height: 300px;
    }
    
    .bento-top-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        width: 100%;
        gap: 30px;
        justify-content: space-between;
    }
    
    /* Responsive CTA */
    .cta-mini-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .cta-mini-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-mini-container::before {
        width: 100%;
        height: 5px;
    }
    
    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }
    
    /* Responsive Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer {
        padding: 50px 20px 100px 20px; /* Important: padding-bottom leaves space for FABs! */
    }
    
    /* Responsive FABs */
    .fab {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        bottom: 20px;
    }
    .fab-location { left: 20px; }
    .fab-contact-wrapper { right: 20px; bottom: 20px; }
    .fab-menu { bottom: 70px; right: 0; }
}

/* =========================================
   HISSELER SAYFASI TASARIMI
   ========================================= */

.pricing-page-header {
    padding: 80px 20px 40px 20px;
    text-align: center;
    background-color: var(--nav-bg);
}

.pricing-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.pricing-header-content h1 span {
    color: var(--primary-color);
}

.pricing-header-content p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 20px 20px 80px 20px;
    background-color: var(--nav-bg);
}

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

.pricing-category {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}

.category-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.category-illustration {
    height: 280px;
    width: 280px;
    object-fit: contain;
    margin-bottom: -60px;
    z-index: 1;
    transition: var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.category-illustration:hover {
    transform: scale(1.1) translateY(-10px);
}

.category-illustration.small-ill {
    height: 200px;
    width: 200px;
}

.category-title-box {
    background: #ffffff;
    padding: 16px 40px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.category-title-box h2 {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 800;
    margin: 0;
}

.category-title-box h2 span {
    color: var(--primary-color);
}

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

.price-detailed-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.price-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.price-detailed-card.premium {
    border-color: rgba(228, 5, 31, 0.2);
    box-shadow: 0 15px 40px rgba(228, 5, 31, 0.08);
    transform: translateY(-10px);
}

.price-detailed-card.premium:hover {
    transform: translateY(-18px);
}

.card-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 24px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.card-badge.red {
    background: linear-gradient(135deg, #ff3b4d 0%, var(--primary-color) 100%);
}

.card-badge.primary {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.price-highlight {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-highlight h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price-highlight h3 small {
    font-size: 1.2rem;
    color: #6b7280;
}

.weight-info {
    display: block;
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 8px;
    font-weight: 500;
}

.detailed-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex: 1;
}

.f-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.f-row i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.f-row span {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.f-row.emphasis span {
    color: var(--text-color);
}

.f-row.emphasis span strong {
    font-weight: 700;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-indicator {
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px;
    border-radius: 8px;
}

.status-indicator.open {
    background: rgba(37, 211, 102, 0.1);
    color: #1fad53;
}

.btn-reserve {
    display: block;
    text-align: center;
    background: #f3f4f6;
    color: var(--text-color);
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-reserve:hover {
    background: #e5e7eb;
}

.btn-reserve.premium {
    background: linear-gradient(135deg, #ff3b4d 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(228, 5, 31, 0.2);
}

.btn-reserve.premium:hover {
    box-shadow: 0 15px 25px rgba(228, 5, 31, 0.3);
    transform: translateY(-2px);
}

.mt-80 { margin-top: 80px; }
.mt-60 { margin-top: 60px; }

.pricing-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-simple-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-align: center;
    position: relative;
    transition: var(--transition);
    margin-top: 20px;
}

.price-simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.price-simple-card.premium {
    border-color: rgba(228, 5, 31, 0.2);
    background: #fffcfc;
}

.price-simple-card .val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin-top: 10px;
}

.price-simple-card .val small {
    font-size: 1.1rem;
    color: #6b7280;
}

.custom-işlem-banner {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 32px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.cıb-bg-image {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    opacity: 0.2;
    pointer-events: none;
}

.cıb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fcd34d;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cıb-content h2 {
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
}

.cıb-content h2 span {
    color: var(--primary-color);
}

.cıb-content p {
    color: #9ca3af;
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.6;
}

.btn-wa-alt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #111827;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.btn-wa-alt:hover {
    background: var(--primary-color);
    color: white;
}

/* Big Reserve Banner */
.big-reserve-banner {
    padding: 80px 20px;
    background: white;
}

.brb-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brb-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 40px;
}

.brb-title span {
    color: var(--primary-color);
}

.brb-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.brb-f-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fafb;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-color);
    border: 1px solid rgba(0,0,0,0.05);
}

.brb-f-icon {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brb-giant-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-decoration: none;
}

.brb-phone-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 30px;
    border-right: 2px solid rgba(0,0,0,0.1);
}

.brb-phone-left img {
    height: 48px;
}

.brb-social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 600;
}

.brb-social-text i {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 4px;
}

.brb-phone-right strong {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.brb-giant-phone:hover .brb-phone-right strong {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .pricing-detailed-grid, .pricing-simple-grid {
        grid-template-columns: 1fr;
    }
    .pricing-category {
        padding: 40px 20px;
    }
    .price-detailed-card {
        margin-top: 20px;
    }
    .price-detailed-card.premium {
        transform: translateY(0);
    }
    .price-detailed-card.premium:hover {
        transform: translateY(-8px);
    }
    .brb-giant-phone {
        flex-direction: column;
        gap: 20px;
    }
    .brb-phone-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid rgba(0,0,0,0.1);
        padding-bottom: 20px;
        flex-direction: column;
    }
    .custom-işlem-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .cıb-bg-image {
        display: none;
    }
    .category-title-box h2 {
        font-size: 1.3rem;
    }
    .brb-title {
        font-size: 2rem;
    }
    .brb-phone-right strong {
        font-size: 2.5rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    max-width: 600px;
    width: 90%;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #4b5563;
    transition: var(--transition);
}

.modal-close:hover {
    background: #e5e7eb;
    color: var(--primary-color);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(228, 5, 31, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
}

button.bento-link {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.bento-img-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.bento-img-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Video Promo Banner & Modal */
.video-promo-banner {
    background: #f9fafb;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.video-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.btn-play-video {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(228, 5, 31, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-play-video:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(228, 5, 31, 0.4);
}

.btn-play-video i {
    font-size: 2rem;
}

.pulse-ring {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    animation: pulseRing 3s infinite;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.video-modal-content {
    background: #000;
    max-width: 1000px;
    width: 95%;
    padding: 0;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content .modal-close {
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
}

.video-modal-content .modal-close:hover {
    background: rgba(255,255,255,0.4);
    color: white;
}

#promoVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
}

@media (max-width: 768px) {
    .video-modal-content .modal-close {
        top: 10px;
        right: 10px;
        z-index: 10;
        background: rgba(0,0,0,0.5);
    }
}

/* Wizard Modal Styles */
.wizard-modal-content {
    max-width: 500px;
    padding: 40px;
}
.wizard-header {
    text-align: center;
    margin-bottom: 30px;
}
.wizard-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.wizard-header h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 10px;
}
.wizard-header p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}
.wizard-step {
    margin-bottom: 25px;
    text-align: left;
}
.wizard-step label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}
.kilo-badge {
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-left: 10px;
}
.wizard-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.wizard-radio-group input[type="radio"] {
    display: none;
}
.wiz-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.2s;
}
.wiz-card i {
    font-size: 1.4rem;
}
.wizard-radio-group input[type="radio"]:checked + .wiz-card {
    border-color: var(--primary-color);
    background: rgba(228, 5, 31, 0.05);
    color: var(--primary-color);
}
.range-slider-wrapper {
    padding: 10px 0;
}
.wizard-range {
    width: 100%;
    accent-color: var(--primary-color);
    margin-bottom: 8px;
    cursor: pointer;
}
.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9ca3af;
}
.wizard-select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.wizard-select:focus {
    border-color: var(--primary-color);
}
.wizard-footer {
    margin-top: 30px;
}
.btn-wizard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 18px;
}
/* Trust & Compliance Section */
.trust-compliance-section {
    padding: 100px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

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

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

.trust-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 15px 0;
    letter-spacing: -0.02em;
}

.trust-header h2 span {
    color: var(--primary-color);
}

.trust-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: #fff1f2;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2rem;
    margin-bottom: 25px;
}

.trust-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding-top: 50px;
    border-top: 1px dashed #cbd5e1;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .trust-header h2 {
        font-size: 2rem;
    }
    .trust-badges-row {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
}

/* Vekalet Info Box */
.vekalet-info-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.v-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.v-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.v-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
}

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

.v-item {
    display: flex;
    gap: 15px;
}

.v-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.v-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.v-item p strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 5px;
}

.v-footer-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .vekalet-info-box {
        padding: 30px 20px;
    }
    .v-header h3 {
        font-size: 1.5rem;
    }
}


/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for multiple items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
