:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold: #ffd700;
    --gold-color: #ffd700;
    --gold-light: #ffeb3b;
    --gold-dark: #e6c200;
    --maroon: #800020;
    --maroon-color: #800020;
    --maroon-light: #a0002a;
    --maroon-dark: #600018;
    --maroon-darker: #3c001f;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --maroon-gradient: linear-gradient(135deg, #800020 0%, #a0002a 50%, #600018 100%);
    
    /* Spectacular Section Backgrounds */
    --hero-bg: linear-gradient(135deg, rgba(128, 0, 32, 0.9) 0%, rgba(96, 0, 24, 0.95) 25%, rgba(60, 0, 31, 0.98) 100%);
    --about-bg: linear-gradient(135deg, #ffffff 0%, #fefefe 25%, #f8f9fa 75%, #f1f3f4 100%);
    --product-bg: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 235, 59, 0.08) 75%, rgba(128, 0, 32, 0.05) 100%);
    --gallery-bg: linear-gradient(135deg, #ffffff 0%, #fefefe 25%, rgba(255, 215, 0, 0.03) 75%, rgba(128, 0, 32, 0.02) 100%);
    --patron-bg: linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 25%, rgba(128, 0, 32, 0.03) 75%, rgba(255, 215, 0, 0.05) 100%);
    --cert-bg: linear-gradient(135deg, rgba(128, 0, 32, 0.95) 0%, rgba(96, 0, 24, 0.98) 25%, rgba(160, 0, 42, 0.92) 75%, rgba(255, 215, 0, 0.1) 100%);
    --contact-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 25%, rgba(255, 215, 0, 0.04) 75%, rgba(128, 0, 32, 0.03) 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
.header-wrapper {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(128, 0, 32, 0.15);
    transition: all 0.3s ease;
}

.header-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

/* Top Bar */
.top-bar {
    background: rgba(128, 0, 32, 0.1);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--maroon-color);
    border-bottom: 1px solid rgba(128, 0, 32, 0.2);
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar .contact-info i {
    color: var(--gold-color);
}

.top-bar .social-links {
    display: flex;
    gap: 1rem;
}

.top-bar .social-links a {
    color: var(--maroon-color);
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.25rem;
}

.top-bar .social-links a:hover {
    color: var(--gold-color);
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    padding: 0.25rem 0; /* Further reduced from 0.5rem to make navbar even thinner */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-color);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Space between logo image and text */
}

.logo-image {
    height: 45px; /* Fixed height */
    width: 45px; /* Fixed width for perfect circle */
    border-radius: 50%; /* Makes it perfectly round */
    object-fit: cover; /* Ensures image fits well within the circle */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Subtle border */
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1); /* Subtle background for better visibility */
}

.logo:hover .logo-image {
    border-color: var(--gold-color); /* Gold border on hover */
    transform: scale(1.05); /* Slight scale effect on hover */
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.3); /* Gold glow effect */
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.logo:hover {
    color: var(--gold-color);
}

/* Navigation Styles */
.navbar-nav {
    gap: 0.2rem; /* Further reduced from 0.5rem for minimal space between items */
    margin-left: 0; /* Changed from auto to start nav items from left */
}

.nav-link {
    color: var(--maroon-color) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.3rem 0.7rem !important; /* Further reduced padding for thinner navbar */
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-color) !important;
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Dropdown Styles */
.dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.2);
    margin-top: 0.5rem;
    padding: 1rem 0;
    min-width: 250px;
}

.dropdown-item {
    color: var(--maroon-color);
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(128, 0, 32, 0.1);
    color: var(--maroon-color);
    border-left-color: var(--gold-color);
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 20px;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: 1px solid var(--maroon-color);
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(128, 0, 32, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 25px;
    height: 2px;
    background: var(--maroon-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--maroon-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--maroon-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--gold-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Body padding to account for fixed header */
body {
    padding-top: 75px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 65px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 55px;
    }
}

/* ========================================
   Footer Styles (Essential for Contact Page)
   ======================================== */

/* Footer Styles */
.footer-wrapper {
    background: linear-gradient(135deg, #800020 0%, #a0002a 50%, #600018 100%);
    color: #ffffff;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,215,0,0.1)"/></svg>');
    animation: footerFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerFloat {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    height: 100%;
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.company-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 90%;
}

/* Footer Social Links - Specific to footer to avoid contact section conflicts */
.footer-wrapper .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-wrapper .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.1rem;
}

.footer-wrapper .social-link:hover {
    background: #ffd700;
    color: #800020;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer Contact Information - Specific selectors to avoid conflicts */
.footer-wrapper .contact-info {
    display: flex;
    flex-direction: column;
}

.footer-wrapper .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.footer-wrapper .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-wrapper .contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.footer-wrapper .contact-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-wrapper .contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.footer-wrapper .contact-value {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-wrapper .contact-value:hover {
    color: #ffd700;
}

/* Footer Address Information */
.footer-wrapper .address-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-wrapper .address-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-wrapper .address-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.footer-wrapper .address-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-wrapper .address-header i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
}

.footer-wrapper .address-type {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-wrapper .address-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    padding-left: 1.75rem;
}

/* Sister Concern Card Styles */
.sister-concern-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(128, 0, 32, 0.1);
}

.sister-title {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sister-title i {
    color: #ffd700;
    font-size: 1rem;
}

.sister-concern-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(128, 0, 32, 0.03));
    border: 1px solid rgba(128, 0, 32, 0.15);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sister-concern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.15);
    border-color: rgba(128, 0, 32, 0.25);
}

.sister-card-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.company-logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-logo-section i {
    color: #ffd700;
    font-size: 1rem;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.4rem;
    border-radius: 6px;
}

.company-name {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.sister-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-specialty {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.company-specialty i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.company-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.company-address i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.address-line {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom .container {
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.brand-name {
    color: #ffd700;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.25rem 0.5rem;
}

.footer-links a:hover {
    color: #ffd700;
}

/* Footer Responsive Styles */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 3rem;
    }
    
    .footer-wrapper .social-links {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .company-logo {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .footer-wrapper .contact-item {
        padding: 0.75rem;
    }
    
    .footer-wrapper .address-item {
        padding: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .company-logo {
        font-size: 1.6rem;
    }
    
    .footer-wrapper .social-links {
        gap: 0.75rem;
    }
    
    .footer-wrapper .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-wrapper .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .footer-wrapper .contact-item i {
        margin-top: 0;
    }
    
    .footer-wrapper .address-text {
        padding-left: 0;
    }
}

/* Body padding to account for fixed header */
body {
    padding-top: 75px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 65px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 60px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 55px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.back-to-top:hover {
    background: #ffeb3b;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        var(--hero-bg),
        url('https://images.unsplash.com/photo-1565688534245-05d6b5be184a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.1) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroBackground {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold-color);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 500;
    color: var(--gold-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary {
    background: var(--gold-color);
    color: var(--maroon-color);
    border-color: var(--gold-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    background: #ffeb3b;
    color: var(--maroon-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--maroon-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Remove complex animations and ripple effects */

/* Enhanced Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    animation: floatCircle 25s ease-in-out infinite;
    will-change: transform;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    animation-delay: 8s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 3%;
    animation-delay: 16s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) translateX(-15px) scale(1.05);
        opacity: 0.6;
    }
}

/* Responsive Design - Hero */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
        background: 
            linear-gradient(135deg, rgba(128, 0, 32, 0.9) 0%, rgba(96, 0, 24, 0.95) 100%),
            url('https://images.unsplash.com/photo-1565688534245-05d6b5be184a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 95%;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .hero-btn {
        min-width: 170px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0.5rem;
    }
    
    /* Hide background circles on mobile for better performance */
    .hero-bg-elements {
        display: none;
    }
}

/* Mobile Tablet Responsive */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
        background: 
            linear-gradient(135deg, rgba(128, 0, 32, 0.95) 0%, rgba(96, 0, 24, 1) 100%),
            url('https://images.unsplash.com/photo-1565688534245-05d6b5be184a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 1.2rem;
        line-height: 1.2;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.7;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title::after {
        width: 80px;
        height: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Phone Responsive */
@media (max-width: 575.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 1.5rem 0;
        background: 
            linear-gradient(135deg, rgba(128, 0, 32, 1) 0%, rgba(96, 0, 24, 1) 100%),
            url('https://images.unsplash.com/photo-1565688534245-05d6b5be184a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.05);
        margin: 0 0.5rem;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        letter-spacing: 1px;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.3rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
        line-height: 1.6;
        margin-bottom: 1.8rem;
        padding: 0 0.25rem;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title::after {
        width: 60px;
        height: 2px;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .hero-btn {
        max-width: 280px;
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Mobile Responsiveness - Header */
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: var(--maroon-color);
        margin-top: 1rem;
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .navbar-collapse .nav-link {
        color: #ffffff !important;
    }
    
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--gold-color) !important;
    }
    
    .nav-link {
        text-align: center;
        margin: 0.5rem 0;
        padding: 1rem 1.5rem !important;
        border-radius: 10px;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        background: var(--maroon-dark);
        margin-left: 0;
        margin-top: 0.5rem;
        border-radius: 10px;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-collapse .dropdown-item {
        color: #ffffff !important;
    }
    
    .navbar-collapse .dropdown-item:hover {
        color: var(--gold-color) !important;
        background: rgba(255, 215, 0, 0.1) !important;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .main-header {
        padding: 0.75rem 0;
    }
}

@media (max-width: 767.98px) {
    .logo {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .navbar-collapse {
        padding: 1rem;
        margin-top: 0.75rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.875rem 1.25rem !important;
        margin: 0.25rem 0;
    }
    
    .dropdown-item {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .main-header {
        padding: 0.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .logo {
        font-size: 1.6rem;
    }
    
    .navbar-collapse {
        padding: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 1rem !important;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-item i {
        margin-right: 0.4rem;
        width: 16px;
        font-size: 0.8rem;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 2px 0;
    background: var(--about-bg);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(128, 0, 32, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(160, 0, 42, 0.02) 0%, transparent 60%),
        linear-gradient(45deg, rgba(255, 215, 0, 0.01) 0%, transparent 70%);
    pointer-events: none;
    animation: aboutBackground 25s ease-in-out infinite;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image-col {
    margin-bottom: 3rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(128, 0, 32, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.image-overlay:hover {
    background: var(--maroon-color);
    transform: scale(1.05);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--gold-color);
}

.overlay-content span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.about-text-col {
    padding-left: 2rem;
}

.about-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--maroon-color);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.1);
}

.feature-icon {
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--maroon-color), var(--maroon-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.about-cta {
    margin-top: 2rem;
}

.about-btn {
    background: var(--maroon-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn:hover {
    background: var(--maroon-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Products Section Styles */
.product-section {
    padding: 2px 0;
    background: var(--product-bg);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(128, 0, 32, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(160, 0, 42, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 235, 59, 0.02) 0%, transparent 70%);
    pointer-events: none;
    animation: productBackground 30s ease-in-out infinite;
}

@keyframes productBackground {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.product-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.product-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
    border-radius: 2px;
}

.product-section .row {
    position: relative;
    z-index: 2;
}

.product-section .col-lg-5 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-align: left;
}

.bold-text {
    font-weight: 700;
    color: var(--maroon-color);
    position: relative;
}

.bold-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--maroon-color), var(--gold-color));
    border-radius: 1px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { 
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.product-cta-btn {
    background: var(--maroon-color) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-cta-btn:hover::before {
    left: 100%;
}

.product-cta-btn:hover {
    background: var(--maroon-dark) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 0, 32, 0.4);
}

.product-cta-btn i {
    transition: transform 0.3s ease;
}

.product-cta-btn:hover i {
    transform: translateX(5px);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 0, 32, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.02) 0%, rgba(255, 215, 0, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.15);
    border-color: rgba(128, 0, 32, 0.1);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-img {
    transform: scale(1.05);
    border-radius: 20px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--maroon-color);
}

.product-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Special overlay product card */
.product-overlay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-overlay a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
}

.product-overlay .product-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 0;
}

.product-overlay .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.85) 0%, rgba(96, 0, 24, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
}

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

.product-overlay .overlay i {
    font-size: 3rem;
    color: var(--gold-color);
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Special More Products Card */
.more-products-card {
    background: linear-gradient(135deg, var(--maroon-color) 0%, var(--maroon-dark) 50%, var(--maroon-color) 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-products-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: moreProductsGlow 8s ease-in-out infinite;
}

@keyframes moreProductsGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

.more-products-card a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.more-products-content {
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 2rem 1rem;
}

.floating-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.floating-icons i {
    font-size: 1.5rem;
    color: var(--gold-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: floatIcon 4s ease-in-out infinite;
    position: relative;
}

.floating-icons i:nth-child(1) { animation-delay: 0s; }
.floating-icons i:nth-child(2) { animation-delay: 1s; }
.floating-icons i:nth-child(3) { animation-delay: 2s; }
.floating-icons i:nth-child(4) { animation-delay: 3s; }

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-10px) rotate(5deg);
    }
    50% { 
        transform: translateY(-5px) rotate(0deg);
    }
    75% { 
        transform: translateY(-15px) rotate(-5deg);
    }
}

.more-products-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.more-products-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-color);
    color: var(--maroon-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-color);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

/* Hover Effects */
.more-products-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(128, 0, 32, 0.3);
}

.more-products-card:hover .floating-icons i {
    animation-duration: 2s;
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.more-products-card:hover .explore-btn {
    background: white;
    color: var(--maroon-color);
    border-color: white;
    transform: scale(1.05);
}

.more-products-card:hover .explore-btn i {
    transform: translateX(5px);
}

.more-products-card:hover .more-products-text h4 {
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Gallery Section Styles */
.gallery-section {
    padding: px 0;
    background: var(--gallery-bg);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(128, 0, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(160, 0, 42, 0.03) 0%, transparent 60%),
        linear-gradient(45deg, rgba(255, 215, 0, 0.02) 0%, transparent 80%);
    animation: galleryBackground 35s ease-in-out infinite;
    pointer-events: none;
}

@keyframes galleryBackground {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05) rotate(1deg);
    }
}

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gallery-left .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    text-align: left;
}

.gallery-left .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
    border-radius: 2px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item.main-item {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.8) 0%, rgba(96, 0, 24, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-overlay .overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay .overlay-content i {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    animation: bounceIcon 2s ease-in-out infinite;
}

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

.gallery-overlay .overlay-content span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(128, 0, 32, 0.2);
}

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

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

.gallery-item:hover .gallery-overlay .overlay-content {
    transform: translateY(0);
}

/* See More Button */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--maroon-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.3);
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.see-more-btn:hover::before {
    left: 100%;
}

.see-more-btn:hover {
    background: var(--maroon-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 0, 32, 0.4);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

/* Gallery Right Side */
.gallery-right {
    padding-left: 2rem;
}

.gallery-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
}

.gallery-text-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-color);
    border-radius: 2px;
}

.gallery-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ========================================
   Certifications Section
   ======================================== */
.certifications-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fafafa 25%, 
        #f8f9fa 75%, 
        #f5f5f5 100%);
    overflow: hidden;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(128, 0, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.certifications-content {
    position: relative;
    z-index: 2;
}

.certifications-intro {
    text-align: center;
    margin-bottom: 60px;
}

.certifications-text {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
    font-weight: 400;
}

.certifications-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.certification-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(128, 0, 32, 0.1);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: 
        0 8px 25px rgba(128, 0, 32, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.06);
}

.certification-card:nth-child(2) {
    animation-delay: 0.2s;
}

.certification-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--maroon);
    box-shadow: 
        0 20px 40px rgba(128, 0, 32, 0.15),
        0 8px 25px rgba(128, 0, 32, 0.1);
}

.cert-image-wrapper {
    position: relative;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(128, 0, 32, 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    padding: 4px;
    box-shadow: 
        0 10px 25px rgba(128, 0, 32, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(128, 0, 32, 0.1);
}

.cert-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(128, 0, 32, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(128, 0, 32, 0.3);
}

.cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.cert-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certification-card:hover .cert-overlay {
    opacity: 0.9;
}

.cert-icon {
    color: var(--gold);
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.cert-content {
    text-align: center;
    color: var(--text-dark);
}

.cert-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--maroon);
    text-shadow: none;
}

.cert-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
    color: var(--text-secondary);
    font-weight: 300;
}

.cert-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--maroon-darker);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.floating-icon {
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatIcon 4s infinite ease-in-out;
}

.icon-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg); 
        opacity: 0.6;
    }
}

/* Commitment Footer */
.commitment-footer {
    position: relative;
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.commitment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: scale(1.05);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--maroon-darker);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.commitment-text {
    text-align: left;
}

.commitment-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.commitment-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 300;
}

/* ========================================
   Gallery Stats
   ======================================== */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.1), rgba(96, 0, 24, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(128, 0, 32, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.15), rgba(96, 0, 24, 0.1));
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Patrons Section
   ======================================== */
.patron-section {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    overflow: hidden;
}

.patron-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(128, 0, 32, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(128, 0, 32, 0.02) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.patron-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-25px) translateX(5px) rotate(1deg); 
    }
}

.patron-section .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.patron-showcase {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.patron-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(128, 0, 32, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(128, 0, 32, 0.08) 100%);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(128, 0, 32, 0.12);
    box-shadow: 
        0 20px 60px rgba(128, 0, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.patron-logos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    pointer-events: none;
}

.patron-logos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 48%, 
        rgba(128, 0, 32, 0.05) 50%, 
        transparent 52%);
    pointer-events: none;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.patron-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.8rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(128, 0, 32, 0.08);
    position: relative;
    overflow: hidden;
    animation: floatUp 0.8s ease-out forwards;
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
    z-index: 2;
}

.patron-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.patron-item:nth-child(even) {
    animation-delay: 0.2s;
}

.patron-item:nth-child(3n) {
    animation-delay: 0.3s;
}

.patron-item:nth-child(4n) {
    animation-delay: 0.4s;
}

.patron-item:nth-child(5n) {
    animation-delay: 0.5s;
}

.patron-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(128, 0, 32, 0.08), 
        rgba(255, 215, 0, 0.05),
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.patron-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.patron-item:hover::before {
    left: 100%;
}

.patron-item:hover::after {
    width: 100px;
    height: 100px;
}

.patron-item:hover {
    transform: translateY(-12px) scale(1.08) rotateY(5deg);
    box-shadow: 
        0 25px 50px rgba(128, 0, 32, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(128, 0, 32, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
}

.patron-item:hover:nth-child(odd) {
    transform: translateY(-12px) scale(1.08) rotateY(-5deg);
}

.patron-item img {
    max-width: 90%;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(80%) brightness(0.9) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
}

.patron-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1.2);
    transform: scale(1.15);
}

.patron-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(128, 0, 32, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(128, 0, 32, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(128, 0, 32, 0.05), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    animation: rotateSlow 10s linear infinite;
    z-index: 1;
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover::after {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(128, 0, 32, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(128, 0, 32, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        var(--maroon-color) 0%, 
        var(--maroon-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 
        0 8px 25px rgba(128, 0, 32, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(128, 0, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-box:hover .stat-icon::before {
    width: 60px;
    height: 60px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--maroon-color), var(--maroon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.stat-box:hover .stat-label {
    opacity: 1;
    color: var(--maroon-color);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-box:hover .stat-icon::before {
    transform: translateX(100%);
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Responsive Design - Patrons & Certifications
   ======================================== */
@media (max-width: 991.98px) {
    .patron-section {
        padding: 80px 0;
    }
    
    .patron-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .patron-item {
        padding: 1rem;
    }
    
    .patron-item img {
        max-height: 50px;
    }
    
    .stat-box {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-right {
        padding-left: 0;
        text-align: center;
    }
    
    .certifications-section {
        padding: 80px 0;
    }
    
    .certifications-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .certification-card {
        padding: 25px;
    }
    
    .cert-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .cert-title {
        font-size: 1.3rem;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-text {
        text-align: center;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
    .patron-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .patron-item {
        padding: 1.4rem;
    }
    
    .patron-item img {
        max-height: 55px;
    }
    
    .patron-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-box:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .patron-section {
        padding: 60px 0;
    }
    
    .patron-section::after {
        width: 150px;
        height: 150px;
        top: 5%;
        right: 2%;
    }
    
    .patron-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .patron-item {
        padding: 1rem;
    }
    
    .patron-item:hover {
        transform: translateY(-6px) scale(1.05);
    }
    
    .patron-item img {
        max-height: 45px;
    }
    
    .patron-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-box {
        flex-direction: row;
        text-align: left;
        padding: 1.8rem;
        gap: 1.2rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
        height: auto;
    }
    
    .gallery-item.main-item {
        grid-row: auto;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .certifications-section {
        padding: 60px 0;
    }
    
    .certifications-wrapper {
        grid-template-columns: 1fr;
    }
    
    .certification-card {
        padding: 20px;
    }
    
    .cert-features {
        flex-direction: column;
        align-items: center;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .patron-logos {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .patron-item {
        padding: 0.6rem;
    }
    
    .patron-item img {
        max-height: 35px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-rows: repeat(3, 180px);
    }
    
    .cert-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .cert-title {
        font-size: 1.1rem;
    }
    
    .cert-description {
        font-size: 0.9rem;
    }
    
    .commitment-footer {
        padding: 30px 0;
    }
    
    .commitment-number {
        font-size: 1.5rem;
    }
    
    .commitment-label {
        font-size: 0.8rem;
    }
}

/* ========================================
   Get in Touch / Contact Section
   ======================================== */
.contact-section {
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 25%, #f1f3f4 75%, #e9ecef 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(128, 0, 32, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-info-wrapper {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 32, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
}

.contact-header {
    margin-bottom: 2.5rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 1rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-details {
    margin-bottom: 0.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(128, 0, 32, 0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 0, 32, 0.05);
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(128, 0, 32, 0.05);
    border-color: rgba(128, 0, 32, 0.15);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(128, 0, 32, 0.2);
    animation: pulse 2s infinite;
}

.contact-text {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: var(--maroon);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--maroon-light);
}

.contact-address {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-btn-primary:hover::before {
    left: 100%;
}

.contact-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.4);
    color: white;
}

.contact-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--maroon);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--maroon);
}

.contact-btn-secondary:hover {
    background: var(--maroon);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
}

.social-links {
    border-top: 1px solid rgba(128, 0, 32, 0.1);
    padding-top: 1.5rem;
}

.social-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #3b5998, #4267b2);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-wrapper {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    transition: filter 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(128, 0, 32, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

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

.map-overlay i {
    font-size: 1.2rem;
    color: var(--gold);
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 32, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex-direction: column;
}

.contact-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.1);
    border-color: rgba(128, 0, 32, 0.2);
}

.contact-stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.2rem;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

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

.contact-stat-item .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.contact-stat-item .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* Background Elements */
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--maroon);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--maroon-light);
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* Contact Section Responsive */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-info-wrapper {
        margin-bottom: 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-stat-item {
        flex-direction: row;
        text-align: left;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-wrapper {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contact-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-subtitle {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn-primary,
    .contact-btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .social-links {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-stat-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-wrapper {
        padding: 1rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .contact-btn-primary,
    .contact-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-overlay {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-stat-item {
        padding: 1rem;
    }
    
    .contact-stat-item .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .bg-shape {
        display: none; /* Hide background shapes on mobile for better performance */
    }
}
