@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --orange: #f97316; /* Warm Orange */
    --orange-light: #fdba74;
    --orange-dark: #c2410c;
    
    --blue: #3b82f6; /* Soft Blue */
    --blue-light: #93c5fd;
    --blue-dark: #1d4ed8;
    
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 30px -5px rgba(249, 115, 22, 0.15);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.bg-light { background-color: var(--bg-light); }

.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--orange), #f59e0b);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 3px solid white; /* solid white line under logo */
}

.navbar.scrolled .logo img {
    height: 70px; /* shrink on scroll */
}

.navbar.scrolled .logo span {
    font-size: 1.3rem !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 125px; /* Reduced by 30% */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ffffff;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 10s infinite ease-in-out alternate;
}

.orange-sphere {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--orange);
}

.blue-sphere {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--blue);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 90%;
    width: 450px; /* Premium size, not too overwhelming */
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.08));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.hero .tagline {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.budget-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid rgba(0,0,0,0.05);
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex: 1;
    gap: 12px;
}

.search-input-group i {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.search-input-group input, .search-input-group select {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    color: var(--text-main);
    background: transparent;
}

.search-input-group select {
    cursor: pointer;
    -webkit-appearance: none;
}

.search-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
}

.btn-search {
    background: var(--text-main);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-search:hover {
    background: #000;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.stat {
    font-weight: 500;
    color: var(--text-muted);
}

.stat-number {
    font-weight: 800;
    color: var(--text-main);
    font-size: 1.2rem;
}

.stat-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}

/* Pets Marketplace */
.filter-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.tabs, .budget-filter {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tabs::-webkit-scrollbar, .budget-filter::-webkit-scrollbar {
    display: none;
}

.budget-filter {
    align-items: center;
    padding-left: 20px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 5px;
}

.tab-btn, .budget-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover, .budget-btn:hover {
    color: var(--text-main);
}

.tab-btn.active, .budget-btn.active {
    background: var(--text-main);
    color: var(--white);
}

.pets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.pet-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.pet-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.pet-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pet-card:hover .pet-image-container img {
    transform: scale(1.08);
}

.pet-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange-dark);
}

.pet-details {
    padding: 25px;
}

.pet-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.pet-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pet-category-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.pet-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.btn-whatsapp {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Guidance Portal */
.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guidance-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

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

.g-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.g-icon.orange { background: rgba(249, 115, 22, 0.1); color: var(--orange); }
.g-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--blue); }
.g-icon.grey { background: #f1f5f9; color: var(--text-main); }

.guidance-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guidance-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    color: var(--orange);
    gap: 10px;
}

/* About & Service Map */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.trust-badge-inline {
    display: inline-block;
    background: var(--text-main);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Minimalist Map UI */
.map-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.map-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-header h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-pulse {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
}

.status-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.map-visual {
    height: 300px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.map-point {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--blue);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 2;
}

.map-point::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.map-point:hover::after {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

.point-mumbai { top: 70%; left: 40%; background: var(--orange); }
.point-vasai { top: 50%; left: 50%; width: 18px; height: 18px; }
.point-palghar { top: 30%; left: 60%; }
.point-pune { top: 80%; left: 70%; }

.map-routes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.route-lines {
    width: 100%;
    height: 100%;
}

.map-footer {
    padding: 15px 20px;
    background: rgba(0,0,0,0.02);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* Footer */
footer {
    background: var(--text-main);
    color: white;
    padding: 80px 0 20px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3, .footer-inquiry h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--orange);
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inquiry-form input, .inquiry-form select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: inherit;
    outline: none;
}

.inquiry-form input::placeholder {
    color: #94a3b8;
}

.inquiry-form select {
    color: #94a3b8;
}

.inquiry-form select option {
    background: var(--text-main);
}

.btn-submit {
    background: var(--orange);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--orange-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .pets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: center; /* Center the logo block on mobile */
    }
    .mobile-menu-btn {
        position: absolute;
        right: 20px;
        display: block;
    }
    .logo {
        justify-content: center;
        width: 100%;
        position: relative;
    }
    .logo img {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 60px;
        transition: all 0.3s ease;
    }
    .logo span {
        font-size: 1.3rem !important;
        transition: all 0.3s ease;
    }
    .navbar.scrolled .logo img {
        height: 50px;
    }
    .navbar.scrolled .logo span {
        font-size: 1.1rem !important;
    }
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .budget-search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
        background: rgba(255,255,255,0.9);
    }
    
    .search-divider {
        width: 100%;
        height: 1px;
    }
    
    .btn-search {
        width: 100%;
        margin-top: 5px;
    }
    
    .filter-dashboard {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .tagline {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pets-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .pet-image-container {
        height: 180px;
    }
    
    .pet-details {
        padding: 15px;
    }
    
    .pet-title {
        font-size: 1.1rem;
    }
    
    .pet-price {
        font-size: 1rem;
    }
    
    .pet-category-text {
        font-size: 0.8rem;
    }
    
    .btn-whatsapp {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* Image Disclaimer */
.img-disclaimer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 0.75rem;
    text-align: center;
    padding: 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    z-index: 5;
    text-transform: uppercase;
}

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

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

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: var(--orange);
    color: white;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #f1f5f9;
    position: relative;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
}

.modal-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-main);
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-traits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.trait-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trait-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.trait-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image-container {
        min-height: 200px;
        height: 200px;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-content {
        position: absolute;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        transform: translateY(100%) scale(1);
        margin: 0;
    }
    
    .modal-overlay.active .modal-content {
        transform: translateY(0) scale(1);
    }
}

/* Status Badges */
.pet-card.sold-out {
    filter: grayscale(100%);
    opacity: 0.7;
    pointer-events: none;
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.status-badge.reserved {
    background: #f59e0b;
}

/* Mobile Bottom App Bar */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 10px 20px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    justify-content: space-between;
    align-items: center;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--blue);
}

.mobile-bottom-nav .nav-item.highlight {
    color: var(--orange);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: var(--orange);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px; /* Above mobile nav */
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Welcome Popup Modal */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

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

.welcome-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.welcome-overlay.active .welcome-modal {
    transform: scale(1);
}

.close-welcome {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-welcome:hover {
    color: var(--text-main);
}

.welcome-logo-container {
    margin-bottom: 20px;
    animation: slideDownFade 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.welcome-logo {
    height: 90px;
    object-fit: contain;
}

.welcome-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 5px;
}

.welcome-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.welcome-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 30px;
}

.btn-welcome {
    background: var(--orange);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-welcome:hover {
    transform: scale(1.05);
    background: #ea580c;
}

@keyframes slideDownFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Media Section */
.social-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}
.social-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.social-tab-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: white;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.social-tab-btn.active[data-social="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.social-tab-btn.active[data-social="facebook"] {
    background: #1877F2;
    color: white;
}
.social-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.social-tab-content.active {
    display: block;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.social-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1/1;
    cursor: pointer;
}
.social-img-wrapper {
    width: 100%;
    height: 100%;
}
.social-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.social-card:hover .social-img-wrapper img {
    transform: scale(1.1);
}
.social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-card:hover .social-overlay {
    opacity: 1;
}
.social-stats {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.social-stats i {
    color: #dc2743;
}
.fb-review-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}
.fb-review-card:hover {
    transform: translateY(-5px);
}
.fb-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.fb-author h4 {
    margin: 0;
    color: var(--text-main);
    font-size: 1.1rem;
}
.fb-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.fb-rating {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.fb-text {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   Dog Training Academy Styles
   ========================================================================== */
#training {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Language Toggling Utilities */
#training.lang-en .mr-text {
    display: none !important;
}
#training.lang-mr .en-text {
    display: none !important;
}

/* Language Switcher Button Group */
.lang-switcher-container {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.06);
    padding: 6px;
    border-radius: var(--radius-full);
    margin-top: 25px;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.lang-tab-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-tab-btn:hover {
    color: var(--text-main);
}

.lang-tab-btn.active {
    background: var(--text-main);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

/* Hook/Intro Box */
.training-hook-box {
    max-width: 800px;
    margin: -10px auto 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.training-hook-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.training-hook-box strong {
    color: var(--text-main);
}

/* Focus Grid & Cards */
.training-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.focus-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(249, 115, 22, 0.15);
}

.focus-icon {
    width: 65px;
    height: 65px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.focus-card:hover .focus-icon {
    background: var(--blue);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.focus-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.3;
}

.focus-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Subtitle */
.training-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin: 50px 0 35px;
    letter-spacing: -0.02em;
}

/* Packages Grid */
.training-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.training-package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.training-package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Popular Card Style */
.training-package-card.training-popular-card {
    border: 2px solid var(--blue);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12);
}

.training-package-card.training-popular-card:hover {
    box-shadow: 0 25px 45px rgba(59, 130, 246, 0.2);
}

.package-badge-status {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.package-badge-status.popular-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-dark);
}

.training-package-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pricing-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-strike {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.package-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.package-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.4;
}

.package-bullet-list li i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* popular card tick marks */
.training-popular-card .package-bullet-list li i {
    color: var(--blue);
}

/* custom highlight for bonus icons */
.package-bullet-list li i.text-orange {
    color: var(--orange);
}

.training-package-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
}

.training-popular-card .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.training-popular-card .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Ribbons for offers */
.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .training-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .training-package-card {
        padding: 35px 25px;
    }
    
    .price-current {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .training-focus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .focus-card {
        padding: 25px;
    }
    
    .training-subtitle {
        font-size: 1.8rem;
    }
}
