@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --gold: #cca43b;
    --gold-dark: #a8812c;
    --gold-light: #e6c36c;
    --gold-gradient: linear-gradient(135deg, #cca43b 0%, #a8812c 100%);
    --gold-glow: 0 0 15px rgba(204, 164, 59, 0.35);
    
    --emerald: #0b253a; /* Map to Peacock Blue */
    --emerald-dark: #071a29; /* Map to Dark Peacock */
    --emerald-light: #eef3f7; /* Map to Soft Steel-Blue Contrast */
    --emerald-gradient: linear-gradient(135deg, #0b253a 0%, #071a29 100%);
    
    --cream-bg: #f9fbfc; /* Crisp off-white */
    --white: #ffffff;
    --olive-dark: #1e2d3d; /* Dark slate text */
    --border-light: rgba(11, 37, 58, 0.15);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Mapped variables for backward compatibility with luxury classes */
    --luxury-black: #071a29;
    --luxury-dark: #0c2b43;
    --luxury-gray: #5a6f80;
    --luxury-light-gray: #eef3f7;
    --luxury-border: rgba(204, 164, 59, 0.25);
}

/* Base Styles */
body {
    font-family: var(--font-sans);
    background-color: var(--cream-bg);
    color: #1e2d3d;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif-font {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--olive-dark);
}

.text-gold {
    color: var(--gold) !important;
}

.text-emerald {
    color: var(--emerald) !important;
}

.bg-emerald {
    background-color: var(--emerald) !important;
}

.bg-cream {
    background-color: var(--cream-bg) !important;
}

/* Background Utilities */
.bg-cream-light {
    background-color: var(--cream-bg) !important;
}

.bg-cream-dark {
    background-color: var(--emerald-light) !important;
}

.bg-light {
    background-color: var(--luxury-light-gray) !important;
}

.bg-luxury-black {
    background-color: var(--luxury-black) !important;
}

.bg-luxury-dark {
    background-color: var(--luxury-dark) !important;
}

/* Section Spacing */
.section-padding {
    padding: 6.5rem 0;
}

.section-subtitle {
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--emerald);
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    font-weight: 600;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(204, 164, 59, 0.25);
}

.btn-gold:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.btn-emerald {
    background: var(--emerald-gradient);
    color: #ffffff;
    font-weight: 600;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(11, 37, 58, 0.25);
}

.btn-emerald:hover {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    transform: translateY(-2px);
}

.btn-outline-emerald {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-emerald:hover {
    background: var(--emerald-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--luxury-black);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Header & Navigation */
.navbar {
    background-color: rgba(7, 26, 41, 0.96) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    padding: 1.2rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

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

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

/* 1. Hero Section (Editorial Split Showcase) */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(7, 26, 41, 0.82), rgba(12, 43, 67, 0.88)), url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 80px;
    color: #ffffff;
}

.hero-subtitle {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-trustline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

/* Trust Badges in Hero */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.badge-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Layered Editorial Image Collage in Hero */
.editorial-gallery {
    position: relative;
    width: 100%;
    height: 480px;
}

.gallery-base {
    width: 80%;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.gallery-base img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay-card {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 45%;
    background: var(--luxury-dark);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay-img-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.overlay-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-details h5 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 700;
    color: var(--gold);
}

.overlay-details p {
    font-size: 0.75rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* 2. Bento-Style Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 37, 58, 0.08);
    border-color: var(--gold-light);
}

/* Giant Highlight Card */
.bento-featured {
    grid-column: span 1;
    grid-row: span 2;
    background: var(--emerald-gradient);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
}

.bento-featured h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bento-featured p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.bento-card .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--emerald-light);
    color: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.bento-card:hover .icon-circle {
    background: var(--gold);
    color: var(--emerald-dark);
}

.bento-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--emerald);
}

.bento-card p {
    color: #5a6f80;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-featured {
        grid-row: span 1;
    }
}

/* 3. Products Tab Filter Layout */
.filter-container {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-tabs {
    display: inline-flex;
    background: var(--white);
    padding: 6px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--luxury-gray);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--emerald);
}

.filter-btn.active {
    background: var(--emerald-gradient);
    color: #ffffff;
}

/* Dynamic product cards animation states */
.product-card-wrapper {
    transition: all 0.4s ease;
}

.product-card-wrapper.hide {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

/* Center-aligned product card theme */
.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 37, 58, 0.06);
    border-color: var(--gold-light);
}

.product-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 26, 41, 0.6);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid var(--gold-light);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--emerald);
}

.product-tag {
    font-size: 0.8rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
}

/* 4. Partner Opportunities (Alternating Rows Layout) */
.partner-opportunities-section {
    background-color: var(--white);
}

.partner-row {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

.partner-row:last-child {
    margin-bottom: 0;
}

.partner-row.reverse {
    flex-direction: row-reverse;
}

.partner-image-side {
    width: 50%;
    padding: 0 3rem;
}

.partner-info-side {
    width: 50%;
    padding: 0 3rem;
}

.partner-showcase-box {
    background: var(--emerald-light);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: inset 0 0 30px rgba(11, 37, 58, 0.03);
}

.partner-showcase-box i {
    font-size: 4rem;
    color: var(--emerald);
    margin-bottom: 1.5rem;
    display: block;
}

.partner-info-side h3 {
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.partner-info-side p {
    color: #5a6f80;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partner-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.partner-benefits-list li {
    font-size: 0.95rem;
    color: #1e2d3d;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.partner-benefits-list li i {
    color: var(--gold-dark);
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .partner-row, .partner-row.reverse {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    .partner-image-side, .partner-info-side {
        width: 100%;
        padding: 0;
    }
    .partner-image-side {
        margin-bottom: 2rem;
    }
}

/* 5. Process Steps Layout (Horizontal Process Cards) */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    position: relative;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(11, 37, 58, 0.05);
}

.step-number-bg {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: rgba(204, 164, 59, 0.15);
    line-height: 1;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--emerald);
    padding-right: 30px;
}

.step-card p {
    font-size: 0.9rem;
    color: #5a6f80;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
    }
}

/* 6. Testimonial Wall Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.01);
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.google-logo {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
}

.google-g { color: #4285F4; }
.google-o1 { color: #EA4335; }
.google-o2 { color: #FBBC05; }
.google-l { color: #34A853; }
.google-e { color: #EA4335; }

.stars {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #5a6f80;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(11, 37, 58, 0.06);
    padding-top: 1.2rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--emerald-light);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
    font-size: 0.85rem;
    border: 1px solid var(--border-light);
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--olive-dark);
    margin-bottom: 0.1rem;
}

.reviewer-role {
    font-size: 0.75rem;
    color: #5a6f80;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* 7. FAQ Grid (2 Columns) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
    margin-top: 3rem;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.faq-card:hover {
    border-color: var(--gold-light);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.faq-question i {
    color: var(--gold-dark);
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 2px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #5a6f80;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 26px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About Stats Boxes */
.stat-box {
    text-align: center;
    padding: 2.2rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 37, 58, 0.04);
    border-color: var(--gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 0.4rem;
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--olive-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form and Lead Section */
.form-section {
    background-color: var(--emerald-light);
}

.lead-form-wrapper {
    background-color: var(--white);
    border-radius: 15px;
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(11, 37, 58, 0.04);
    border: 1px solid var(--border-light);
}

.form-control, .form-select {
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 0.25rem rgba(11, 37, 58, 0.1);
}

.contact-info-card {
    background-color: var(--emerald);
    color: #ffffff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(11, 37, 58, 0.15);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 1.8rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-text p, .contact-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--gold-light);
}

/* Sticky Action Buttons */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

.sticky-action-btn {
    flex: 1;
    text-align: center;
    padding: 1.1rem 0;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.sticky-action-btn i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.sticky-btn-whatsapp {
    background-color: #25D366;
}

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

.sticky-btn-call {
    background-color: var(--emerald-dark);
}

.sticky-btn-call:hover {
    background-color: var(--emerald);
    color: #ffffff;
}

/* Footer styling */
footer {
    background-color: var(--emerald-dark);
    color: rgba(255, 255, 255, 0.65);
    border-top: 2px solid var(--gold);
    padding: 4.5rem 0 6rem;
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--gold-light);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--gold-light) !important;
    border-radius: 50%;
    margin-right: 8px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--emerald-dark) !important;
    transform: translateY(-3px);
}

/* Founder & Leadership Section */
.owner-img-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.owner-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: var(--gold-glow);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.owner-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(204, 164, 59, 0.5);
}

.owner-message-box {
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--gold);
}

.owner-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
}

.owner-designation {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Modal dark form inputs styling */
.modal-content .form-control,
.modal-content .form-select,
.modal-content .input-group-text {
    background-color: var(--emerald-dark) !important;
    color: #ffffff !important;
    border-color: var(--luxury-gray) !important;
}

.modal-content .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.modal-content .form-control:focus,
.modal-content .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.25rem rgba(204, 164, 59, 0.25) !important;
}

/* Partner Opportunities Showcase Images */
.partner-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(11, 37, 58, 0.05);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.partner-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(11, 37, 58, 0.4) 100%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.partner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.partner-img-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(204, 164, 59, 0.15);
}

.partner-img-wrapper:hover .partner-img {
    transform: scale(1.05);
}

.partner-img-wrapper:hover::after {
    background: linear-gradient(to bottom, transparent 40%, rgba(11, 37, 58, 0.6) 100%);
}
