/* ============================================
   VISHAL DISTRIBUTORS - PREMIUM LUXURY DESIGN
   ============================================ */

:root {
    --primary-color: #C96B7B;
    --primary-dark: #A85265;
    --primary-light: #E8A3B0;
    --rose-gold: #C17070;
    --bg-white: #FFFFFF;
    --bg-light: #FAF9F7;
    --bg-blush: #FDF6F3;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-light: #E8DDD9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 4px 20px rgba(201, 107, 123, 0.08);
    --shadow-medium: 0 8px 40px rgba(201, 107, 123, 0.12);
    --shadow-large: 0 20px 60px rgba(201, 107, 123, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Compact site adjustments: reduce overall paddings and font-sizes for a tighter layout */
body {
    font-size: 14px;
}

h1 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h2 { font-size: clamp(1.2rem, 2.6vw, 1.6rem); }
h3 { font-size: 1rem; }

.hero-premium { padding: 40px 0; }
.hero-container { gap: 2rem; }

.btn-cta, .btn-primary, .btn-secondary { padding: 0.6rem 1.4rem; font-size: 0.95rem; }

/* Reduce card paddings globally */
.highlight-card, .value-card, .info-card, .stat-card, .product-info-premium, .category-card .category-image {
    padding: 0.8rem;
}

.category-card .category-image img { width: 100%; height: 90px; object-fit: cover; border-radius: 10px; }

/* Make product cards slightly smaller */
.product-card-premium { padding: 0.6rem; }
.product-name { font-size: 0.95rem; }
.product-price { font-size: 0.9rem; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(12px); transition: all 500ms ease-out; }
.fade-in { opacity: 0; transform: translateY(0); transition: all 600ms ease-out; }
.scale-up { transform: scale(0.98); opacity: 0; transition: all 400ms ease-out; }
.in-view.fade-up { opacity: 1; transform: translateY(0); }
.in-view.fade-in { opacity: 1; }
.in-view.scale-up { transform: scale(1); opacity: 1; }

.hero-image-wrapper { transition: transform 600ms ease, box-shadow 400ms ease; }
.hero-image-wrapper.in-view { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

.product-card-premium { transition: transform 300ms ease, box-shadow 300ms ease, opacity 300ms ease; }
.product-card-premium.in-view { transform: translateY(-6px); box-shadow: var(--shadow-medium); opacity: 1; }

.category-card.in-view { transform: translateY(-6px); box-shadow: var(--shadow-light); }

/* subtle hover */
.product-card-premium:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-large); }

/* Text & form animations */
.animate-fade { opacity: 0; transform: translateY(12px); transition: all 520ms cubic-bezier(.2,.8,.2,1); }
.animate-zoom { opacity: 0; transform: scale(.98); transition: all 420ms cubic-bezier(.2,.8,.2,1); }
.in-view.animate-fade { opacity: 1; transform: translateY(0); }
.in-view.animate-zoom { opacity: 1; transform: scale(1); }

.form-input { transition: box-shadow 220ms ease, transform 220ms ease; }
.form-input:focus { box-shadow: 0 8px 30px rgba(201,107,123,0.12); transform: translateY(-2px); outline: none; }

/* Image modal (lightbox) */
.image-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); align-items: center; justify-content: center; z-index: 2500; }
.image-modal.open { display: flex; }
.image-modal .modal-inner { max-width: 90%; max-height: 90%; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.image-modal img { width: 100%; height: auto; display: block; }
.image-modal .modal-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.9); border-radius: 50%; width: 44px; height:44px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-weight:700; }


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

p {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   NAVBAR / HEADER
   ============================================ */

.navbar-premium {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-premium .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-center {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.2rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -6px;
    left: 0;
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.contact-box,
.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--rose-gold));
    color: white;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 18px 35px rgba(229, 92, 114, 0.18);
}

.contact-box:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(229, 92, 114, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(140, 140, 140, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 995;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 100%);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -20px 0 50px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem 1.5rem;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-links a {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.95rem 1.1rem;
    border-radius: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-links a:hover,
.mobile-links a:focus-visible {
    background: rgba(229, 92, 114, 0.1);
    color: var(--primary-color);
    outline: none;
}

.mobile-btn {
    margin-top: auto;
    align-self: stretch;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav-center,
    .nav-right {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .navbar-premium {
        padding: 0.85rem 1rem;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-menu__inner {
        padding: 1.75rem 1rem;
    }

    .mobile-links a {
        font-size: 1rem;
    }
}

.logo-premium img, .site-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

@media (min-width: 1200px) {
    .logo-premium img, .site-logo {
        height: 72px;
    }
}

@media (max-width: 480px) {
    .logo-premium img, .site-logo {
        height: 44px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-blush) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--rose-gold));
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-blush), var(--bg-light));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--rose-gold));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(201, 107, 123, 0.3);
    z-index: 10;
}

.hero-badge-text {
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-premium {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    color: var(--text-dark);
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-blush);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRODUCT CATEGORIES SECTION
   ============================================ */

.categories-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--bg-light) 100%);
}

.categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.categories-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.category-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-blush), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    padding: 2rem;
    text-align: center;
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-view {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-premium {
    padding: 80px 0;
    background: var(--bg-white);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.reason-card {
    background: var(--bg-blush);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.reason-card:hover {
    background: linear-gradient(135deg, var(--bg-blush), var(--bg-light));
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.reason-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(10deg);
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.reason-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.stats-strip {
    background: linear-gradient(135deg, var(--primary-color), var(--rose-gold));
    border-radius: 20px;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.stats-strip .stat-item {
    background: transparent;
    border: none;
    padding: 1rem;
}

.stats-strip .stat-number {
    color: white;
    font-size: 2.5rem;
}

.stats-strip .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--bg-light) 100%);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-premium {
    padding: 80px 0;
    background: var(--bg-white);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-blush), var(--bg-light));
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1rem;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--bg-light) 100%);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 150px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner-premium {
    padding: 60px 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--rose-gold));
    color: white;
    text-align: center;
    border-radius: 24px;
    margin: 80px 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-large);
}

.cta-banner-premium h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-banner-premium p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-premium .btn-cta {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-banner-premium .btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-premium {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 60px 2rem 2rem;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
}

.footer-section p, .footer-section a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ============================================
   UTILITIES & GENERAL
   ============================================ */

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--rose-gold));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
}

.whatsapp-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55);
    }
}

@media (max-width: 600px) {
    .whatsapp-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}
