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

/* --- CSS Variables --- */
:root {
    /* Colors */
    --primary: #E63946; /* Vibrant Tomato Red */
    --primary-dark: #d62828;
    --secondary: #F4A261; /* Soft Orange */
    --dark: #1D3557; /* Deep Navy */
    --light: #fcfaf8; /* Warm Off-white */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-spacing: 100px;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1rem; font-size: 1.125rem; color: var(--gray-600); }
.large-text { font-size: 1.5rem; line-height: 1.8; color: var(--dark); font-weight: 500; }
.text-center { text-align: center; }

/* --- Layout Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
.narrow-container { max-width: 800px; }
.section { padding: var(--section-spacing) 0; }
.section-header { margin-bottom: 4rem; }

/* Premium Dark Section Utility */
.dark-section {
    background: radial-gradient(circle at center, #1a1a24 0%, #0c0c0c 100%) !important;
    color: var(--white);
}
.dark-section .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.dark-section h2, .dark-section h3 { color: var(--white) !important; }
.dark-section p { color: rgba(255, 255, 255, 0.7) !important; }
.dark-section .benefit-card {
    background: #151515;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dark-section .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }
.text-white { color: var(--white); }
.text-gray { color: #a8b2d1; }

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    border: 2px solid transparent;
}
.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* --- Navbar --- */
.navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 5%;
}
.logo {
    display: inline-block;
}
.logo img {
    height: 90px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .logo img {
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.navbar.scrolled .logo { color: var(--primary); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active {
    color: var(--primary-dark);
}
.navbar.scrolled .nav-links a.btn-primary {
    color: var(--white);
}
.navbar.scrolled .nav-links a.btn-primary:hover {
    color: var(--primary);
}

/* --- Hero Section (Internal Pages) --- */
.hero {
    height: 65vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0c0c0c;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%; /* Make it full width but overlay will fade the left */
    height: 100%;
    background-image: url('../images/Wjp web banner 4.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.1); /* Slight zoom to prevent edge gaps */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.85) 45%, rgba(30, 41, 59, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: 0 8%;
    max-width: 800px;
}

.hero-title-wrapper {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}



.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: var(--primary);
    font-weight: 700;
}

.hero-subtitle {
    display: none; /* Subtitle usually removed in this layout */
}

/* --- Split Sections --- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-section.reverse .split-grid {
    grid-template-columns: 1fr 1fr;
}
.align-center { align-items: center; }

/* Image Grid for "Who We Are" */
.image-grid {
    display: grid;
    gap: 20px;
}
.img-large {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.img-row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.feature-list {
    margin-top: 2rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
}
.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.rounded-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Glass Card */
.glass-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 20px; left: -20px; right: 20px; bottom: -20px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.glass-card img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 500px;
    width: 100%;
    object-fit: cover;
}

/* Custom Bullets */
.custom-bullets { margin-top: 2rem; }
.custom-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #a8b2d1;
}
.custom-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 10px; height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* --- Quote Section --- */
.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

/* --- Motto Section --- */
.motto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.motto-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.motto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.motto-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}
.motto-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.motto-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* --- Leaders Section --- */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.leader-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.leader-img {
    height: 350px;
    overflow: hidden;
}
.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.leader-card:hover .leader-img img {
    transform: scale(1.05);
}
.leader-info {
    padding: 25px;
    text-align: center;
}
.leader-info h3 { margin-bottom: 5px; }
.leader-info p { margin-bottom: 0; color: var(--primary); font-weight: 500; }

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-member {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}
.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}
.team-overlay h4 { color: var(--white); margin-bottom: 2px; }
.team-overlay p { font-size: 0.9rem; color: var(--secondary); margin-bottom: 0; }
.team-member:hover img {
    transform: scale(1.1);
}
.team-member:hover .team-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* --- Videos Section --- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    background: #000;
}
.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0.2);
    transition: var(--transition);
}
.video-wrapper:hover img { transform: scale(1.05); }
.video-wrapper:hover::after { background: rgba(0,0,0,0.5); }
.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(230, 57, 70, 0.3);
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 80px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.footer ul li i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 0.9rem;
}
.logo-white {
    display: inline-block;
    margin-bottom: 20px;
}
.logo-white img {
    height: 120px;
    width: auto;
}
.footer-brand p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 10px;
}
.social-links a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}
.footer-links h3, .footer-contact h3 {
    color: var(--white);
    margin-bottom: 25px;
}
.footer-links ul li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: var(--white); padding-left: 5px; }
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}
.footer-contact i { margin-top: 5px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .leaders-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Add hamburger menu later */
    .hero-title { font-size: 3rem; }
    .split-grid, .split-section.reverse .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .img-large, .glass-card img, .rounded-img img { height: 350px; }
    .leaders-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .motto-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Home Hero Section --- */
.home-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.4); /* Aggressive zoom to remove all baked-in bars */
    z-index: 0;
}

.home-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 20%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-hero-text {
    max-width: 600px;
}
.home-hero .hero-title {
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.text-primary {
    color: var(--secondary); /* Highlighting with secondary color */
}
.home-hero .hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
}
.hero-badge {
    position: absolute;
    bottom: -80px;
    right: 10%;
    width: 180px;
    height: 180px;
    background: var(--dark);
    border: 5px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
    z-index: 20;
}
.badge-inner {
    display: flex;
    flex-direction: column;
    color: var(--secondary);
    font-family: var(--font-heading);
}
.badge-inner strong {
    color: var(--white);
    font-size: 1.2rem;
    margin: 5px 0;
}
.badge-inner span {
    font-size: 0.8rem;
    letter-spacing: 1px;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--dark);
    padding: 10px;
}
.stat-circle strong {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 2px;
}
.stat-circle span {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.about-reference-img {
    margin-left: calc(-50vw + 50%);
    width: calc(50vw - 50% + 100%);
    height: 600px;
    object-fit: cover;
    border-radius: 0 150px 150px 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
}

/* --- Benefits Grid --- */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.benefit-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    width: 200px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}
.benefit-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}
.benefit-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Tealogy Style Outlets Page --- */
.store-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.store-select {
    padding: 14px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: var(--font-body);
    min-width: 280px;
    color: var(--dark);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E63946' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    box-shadow: var(--shadow-sm);
}

.store-select:hover {
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.store-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.15);
}
.outlet-card {
    display: flex;
    background: var(--white);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    padding: 20px;
    gap: 20px;
    align-items: stretch;
}
.card-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}
.store-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
}
.store-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.store-location-text {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}
.card-middle {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.card-middle h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}
.store-info-group {
    margin-bottom: 20px;
}
.store-info-group h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 5px;
    font-weight: 600;
}
.store-info-group p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}
.card-right {
    flex: 0 0 350px;
    min-height: 250px;
}
.card-right iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #e2e8f0 !important;
}
@media (max-width: 992px) {
    .outlet-card {
        flex-direction: column;
    }
    .card-left, .card-middle {
        flex: auto;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .card-left {
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 20px;
    }
    .card-middle .store-info-group {
        text-align: center;
        justify-content: center;
    }
    .card-right {
        display: none; /* Hide map on mobile for better scrolling */
    }
    .store-filters {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Contact Page --- */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/DSC07327.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon-box {
    width: 80px;
    height: 80px;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon-box {
    background: var(--primary);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
}

.map-section {
    height: 450px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 80px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

/* --- Modern Contact Section --- */
.modern-contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modern-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.modern-contact-item .icon-circle {
    min-width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.modern-contact-item:hover .icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.modern-contact-item .text h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.modern-contact-item .text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.modern-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.modern-form .form-group input,
.modern-form .form-group textarea {
    background: #f9f9f9;
    border: 2px solid transparent;
}

.modern-form .form-group input:focus,
.modern-form .form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
}

/* --- Gallery Page --- */
.gallery-filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 10px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #eee;
}

.filter-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 40px;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 350px;
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition), opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item.video::after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .gallery-filter-container {
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
        justify-content: center;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 8px;
        overflow-x: visible;
    }
    .gallery-filter-container::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        flex: 0 0 auto;
        white-space: nowrap;
        background: var(--white);
        border: 1px solid #eee;
        box-shadow: var(--shadow-sm);
        margin: 0 !important;
    }
    .filter-btn.active, .filter-btn:hover {
        background: var(--primary) !important;
        color: var(--white) !important;
        border-color: var(--primary) !important;
    }
}

/* --- Lightbox --- */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    width: 90%;
    height: 85%;
    max-width: 1200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#lightbox-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-container {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100%;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.prev-btn { left: -80px; }
.next-btn { right: -80px; }

@media (max-width: 992px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    .lightbox-close { top: 20px; right: 20px; z-index: 10; }
}

.btn-reviews {
    background: var(--primary) !important;
    color: var(--white) !important;
    display: inline-flex !important;
    align-items: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* --- End of File --- */

/* --- Models Grid --- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.model-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.model-img {
    position: relative;
    height: 250px;
}
.model-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.model-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.model-info {
    padding: 30px 20px;
    text-align: left;
    background: var(--white);
}
.model-info p {
    margin-bottom: 10px;
    color: var(--gray-800);
}
.model-info strong {
    color: var(--primary);
}



/* --- Map Container --- */
.map-container {
    position: relative;
    margin-top: 50px;
}
.india-map {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}
.map-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.map-stats .stat-item {
    background: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary);
}
.map-stats h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

/* --- Menu Neo Grid --- */
.menu-neo-grid {
    display: flex;
    gap: 15px;
    align-items: stretch;
    height: 550px;
}

@media (max-width: 992px) {
    .menu-neo-grid {
        flex-direction: column;
        height: auto;
    }
}

.menu-neo-large {
    flex: 0 0 32%;
    background: #000;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-neo-title {
    color: #fff;
}

.plate-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 15px auto;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.5));
}

.menu-neo-small-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.neo-row {
    flex: 1;
    display: grid;
    gap: 15px;
}

.neo-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.neo-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .menu-neo-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-neo-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.menu-neo-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.bg-primary {
    background-color: var(--primary);
}
.btn-menu {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: var(--radius-full);
}
.btn-menu:hover {
    background: var(--white);
    color: var(--primary);
}
.d-flex { display: flex; }
.justify-center { justify-content: center; }

/* --- Partners --- */
.partners-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.partners-track {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}
.partners-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.partner-circle {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 25px;
}
.partner-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.partner-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.slider-arrow {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}
.slider-arrow:hover {
    color: var(--dark);
}

/* --- Media Grid --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.media-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.media-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}
.media-content {
    background: var(--white);
    padding: 25px;
    text-align: left;
}
.media-date {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.media-content h4 {
    color: var(--dark);
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* --- Blogs Grid --- */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}
.blog-img {
    height: 250px;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 30px;
}
.blog-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more:hover {
    color: var(--dark);
    gap: 10px;
}

/* --- Insta Grid --- */
.insta-grid {
    display: flex;
    width: 100%;
}
.insta-item {
    position: relative;
    width: calc(100% / 6);
    aspect-ratio: 1;
    overflow: hidden;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}
.insta-item:hover img {
    transform: scale(1.1);
}
.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* --- Quality Assured Section --- */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.quality-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.quality-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}
.quality-card:hover::before {
    opacity: 1;
}
.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
}
.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.quality-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}
.quality-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}
.quality-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    color: var(--white);
}

/* --- Mobile Navbar Toggle --- */
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition);
    position: relative;
}
.navbar.scrolled .mobile-toggle {
    color: var(--dark);
}

@media (max-width: 1024px) {
    .home-hero .hero-title { font-size: 3.5rem; }
    .hero-badge { right: 20px; width: 140px; height: 140px; }
    .menu-masonry { grid-template-columns: repeat(3, 1fr); }
    .insta-item { width: calc(100% / 4); }
    .insta-item:nth-child(n+5) { display: none; }
    
    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed;
        display: flex !important;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        z-index: 9990;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        backdrop-filter: blur(10px);
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-links.active ~ .mobile-toggle {
        color: #E63946 !important;
    }
    .nav-links a { 
        color: var(--dark) !important; 
        font-size: 1.5rem; 
        font-weight: 600;
    }
    .nav-links a.btn-primary {
        color: var(--white) !important;
        padding: 15px 35px;
        margin-top: 10px;
    }
    
    .about-home { padding: 40px 0 !important; background: var(--white) !important; }
    .about-hero-img { position: relative !important; width: 100% !important; top: 0 !important; bottom: 0 !important; margin-bottom: 30px; }
    .about-flex-container { justify-content: flex-start !important; }
    .about-text-block { width: 100% !important; padding-left: 0 !important; text-align: left; }
    .about-text-block h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    .about-text-block p { font-size: 0.95rem !important; line-height: 1.6 !important; }
    
    .outlet-card { flex-direction: column; text-align: center; align-items: center; }
    .outlet-card .card-left, .outlet-card .card-middle {
        width: 100%; border-right: none; padding: 20px;
        display: flex; flex-direction: column; align-items: center;
    }
    .outlet-card .card-left { border-bottom: 1px solid var(--gray-200); }
    .outlet-card .card-middle .store-info-group { justify-content: center; text-align: center; }
    .outlet-card .card-right { display: none; }
    .menu-neo-grid { grid-template-columns: 1fr; }
    .menu-neo-large { min-height: 300px; }
}

@media (max-width: 768px) {
    .home-hero-text { text-align: center; margin: 0 auto; }
    .hero-content-wrapper { flex-direction: column; justify-content: center; }
    .hero-badge { position: relative; bottom: 0; right: 0; margin-top: 40px; }
    .stats-row { flex-wrap: wrap; justify-content: center; }
    .map-stats { flex-direction: column; gap: 20px; align-items: center; }
    .quality-grid { grid-template-columns: 1fr; }
    .menu-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .insta-item { width: calc(100% / 3); }
    .insta-item:nth-child(n+4) { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .benefits-grid { flex-direction: column; align-items: center; display: flex; }
    .benefit-card { width: 100%; max-width: 350px; padding: 40px 30px; }
    
    .stat-item { width: 100% !important; max-width: 350px !important; padding: 50px !important; box-sizing: border-box; }
    
    h1 { font-size: 2.8rem !important; line-height: 1.2 !important; }
    h2, .section-header h2 { font-size: 1.8rem !important; line-height: 1.3 !important; margin-bottom: 15px !important; }
    
    .modern-form-card { padding: 25px !important; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .home-hero .hero-title { font-size: 2.5rem; }
    .menu-masonry { grid-template-columns: 1fr; }
    .menu-item.large { grid-column: span 1; }
    .menu-item.wide { grid-column: span 1; }
    .insta-item { width: calc(100% / 2); }
    .neo-row-4, .neo-row-3 { grid-template-columns: repeat(2, 1fr) !important; }
    h1 { font-size: 2.2rem; }
}

/* --- Scroll To Top --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

