/**
 * Laltu Guinea Palace - Premium Jewellery Website
 * Design System: Maroon-Gold Traditional Indian Aesthetic
 */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================ */
:root {
    /* Primary Maroon/Burgundy Shades */
    --color-navy-darkest: #4A0E0E;
    --color-navy-dark: #6B0F1A;
    --color-navy-medium: #8B1538;
    --color-charcoal: #A91D3A;
    --color-slate: #C7254E;

    /* Gold Shades */
    --color-gold-dark: #B8860B;
    --color-gold-primary: #D4AF37;
    --color-gold-bright: #FFD700;
    --color-gold-light: #FFA500;
    --color-cream: #F5DEB3;

    /* Neutral Colors */
    --color-cream: #FFF8DC;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray-dark: #333333;
    --color-gray-medium: #666666;
    --color-gray-light: #CCCCCC;

    /* Gradient Backgrounds */
    --gradient-maroon-primary: linear-gradient(135deg, var(--color-navy-darkest) 0%, var(--color-navy-medium) 50%, var(--color-charcoal) 100%);
    --gradient-maroon-radial: radial-gradient(circle at top right, var(--color-charcoal), var(--color-navy-darkest));
    --gradient-gold: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-primary) 50%, var(--color-gold-bright) 100%);
    --gradient-overlay: linear-gradient(to right, rgba(107, 15, 26, 0.95), rgba(139, 21, 56, 0.85));

    /* Typography */
    --font-bengali-display: 'Noto Sans Bengali', sans-serif;
    --font-bengali-body: 'Noto Sans Bengali', sans-serif;
    --font-english-display: 'Playfair Display', 'Cinzel', serif;
    --font-english-body: 'Poppins', 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-round: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-inset: inset 0 2px 8px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-english-body);
    background: var(--gradient-navy-primary);
    background-attachment: fixed;
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
.bengali-heading {
    font-family: var(--font-bengali-display);
    font-weight: 700;
    color: var(--color-gold-bright);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bengali-text {
    font-family: var(--font-bengali-body);
    font-weight: 500;
}

.english-heading {
    font-family: var(--font-english-display);
    font-weight: 600;
    color: var(--color-gold-primary);
    letter-spacing: 1px;
}

.brand-name {
    font-family: var(--font-bengali-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.tagline {
    font-family: var(--font-bengali-body);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-cream);
    text-align: center;
    margin: var(--spacing-md) 0;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    overflow-x: hidden;
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-english-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ============================================
   ORNAMENTAL ELEMENTS
   ============================================ */
.ornament-corner {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.15;
    pointer-events: none;
}

.ornament-corner.top-left {
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 Q50,0 50,50 Q0,50 0,0" fill="%23D4AF37" opacity="0.3"/><circle cx="25" cy="25" r="3" fill="%23FFD700"/></svg>');
    background-size: contain;
}

.ornament-corner.top-right {
    top: 0;
    right: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M100,0 Q50,0 50,50 Q100,50 100,0" fill="%23D4AF37" opacity="0.3"/><circle cx="75" cy="25" r="3" fill="%23FFD700"/></svg>');
    background-size: contain;
}

.gold-divider {
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    margin: var(--spacing-lg) 0;
    position: relative;
}

.gold-divider::before,
.gold-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold-primary);
    font-size: 1.2rem;
}

.gold-divider::before {
    left: 0;
}

.gold-divider::after {
    right: 0;
}

/* ============================================
   HEADER & NAVIGATION - PROFESSIONAL DESIGN
   ============================================ */
.header {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(250, 250, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 1001;
}

.site-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(196, 30, 58, 0.3));
    transition: var(--transition-normal);
}

.site-logo:hover {
    filter: drop-shadow(0 3px 10px rgba(196, 30, 58, 0.5));
    transform: scale(1.03);
}

.logo-bengali {
    font-family: var(--font-bengali-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.logo-english {
    font-family: var(--font-english-display);
    font-size: 0.9rem;
    color: var(--color-gold-dark);
    letter-spacing: 2px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: var(--transition-normal);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-link {
    font-family: var(--font-english-body);
    font-weight: 600;
    font-size: 0.88rem;
    color: #2C3E50;
    padding: 0.6rem 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #D4AF37);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8B0000;
    background: rgba(212, 175, 55, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Search Toggle Button */
.search-toggle {
    background: transparent;
    border: none;
    color: #2C3E50;
    font-size: 1.1rem;
    padding: 0.6rem 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    color: #8B0000;
    background: rgba(212, 175, 55, 0.08);
}

/* Search Bar */
.search-bar {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    display: none;
    align-items: center;
    gap: 0.8rem;
    min-width: 350px;
    z-index: 1000;
    border-top: 3px solid #D4AF37;
}

.search-bar.active {
    display: flex;
}

.search-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.search-close {
    background: #8B0000;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: #A91D3A;
    transform: rotate(90deg);
}

/* Mobile Menu Contact & Social Section (Hidden by default, shown on mobile) */
.mobile-contact-social {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    opacity: 0.25;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(45, 10, 15, 0.7) 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-brand {
    font-family: var(--font-bengali-display);
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    letter-spacing: 3px;
}

.hero-tagline {
    font-family: var(--font-bengali-body);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION - ATTRACTIVE GRADIENT CARDS
   ============================================ */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F8F9FA 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B0000 0%, #C41E3A 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #FFA500 100%);
    margin: 0 auto 1rem;
    border-radius: 2px;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
}

.title-underline::before {
    left: -15px;
}

.title-underline::after {
    right: -15px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-top: 0.5rem;
    font-weight: 400;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 0;
}

.feature-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.05) 0%,
            rgba(255, 215, 0, 0.08) 50%,
            rgba(255, 165, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FFA500 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(139, 0, 0, 0.1) 0%,
            rgba(196, 30, 58, 0.12) 50%,
            rgba(212, 175, 55, 0.15) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #8B0000 0%, #C41E3A 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.25) 0%,
            rgba(255, 215, 0, 0.3) 50%,
            rgba(255, 165, 0, 0.25) 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-card:hover .feature-icon i {
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.2);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-title {
    font-family: var(--font-english-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.65rem 2rem;
    font-family: var(--font-english-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-navy-darkest);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: var(--gradient-red);
    color: white;
    box-shadow: var(--shadow-red);
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(196, 30, 58, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-primary);
    border: 2px solid var(--color-gold-primary);
}

.btn-outline:hover {
    background: var(--color-gold-primary);
    color: var(--color-navy-darkest);
}

/* ============================================
   FOOTER - COMPACT & PROFESSIONAL
   ============================================ */
.footer {
    background: var(--color-navy-darkest);
    padding: 2.5rem 0 0;
    border-top: 3px solid var(--color-gold-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-english-display);
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Brand Section */
.brand-section .footer-logo {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.brand-section .bengali-subtitle {
    color: var(--color-gold-pale);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.brand-section .footer-tagline {
    color: var(--color-cream);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--color-gold-primary);
    color: var(--color-navy-darkest);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--color-gold-primary);
}

.footer-links a:hover {
    color: var(--color-gold-primary);
    padding-left: 0.25rem;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-cream);
}

.contact-item i {
    color: var(--color-gold-primary);
    margin-top: 0.2rem;
    font-size: 0.9rem;
    min-width: 16px;
}

.contact-item a {
    color: var(--color-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-gold-primary);
}

.contact-item .closed-text {
    color: var(--color-gold-pale);
    font-size: 0.8rem;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
    margin: 1.5rem 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-copyright p {
    color: var(--color-cream);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal p {
    color: var(--color-gray-light);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .brand-section .footer-logo {
        font-size: 1.3rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 3s infinite linear;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    background-size: 1000px 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet and Below (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .header-content {
        padding: 0 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .site-logo {
        height: 40px;
    }
}

/* Tablet Portrait (max-width: 968px) */
@media (max-width: 968px) {
    /* Hide contact-social-bar on mobile */
    .contact-social-bar {
        display: none;
    }

    /* Mobile Menu Toggle - Show */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Show mobile contact/social in hamburger menu */
    .mobile-contact-social {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        margin-top: auto;
        padding: 0.6rem 0.8rem 1.5rem;
        background: linear-gradient(135deg, 
            rgba(139, 0, 0, 0.95) 0%, 
            rgba(169, 29, 58, 0.96) 50%, 
            rgba(196, 30, 58, 0.95) 100%);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        border-top: 2px solid rgba(255, 215, 0, 0.3);
        flex-shrink: 0;
        min-height: fit-content;
    }

    .mobile-contact-link {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        color: #FFFFFF;
        font-size: 0.76rem;
        font-weight: 500;
        text-decoration: none;
        padding: 0.3rem 0.3rem;
        transition: all 0.3s ease;
    }

    .mobile-contact-link:hover {
        color: var(--color-gold-bright);
        transform: translateX(2px);
    }

    .mobile-contact-link i {
        font-size: 0.9rem;
        color: var(--color-gold-bright);
        min-width: 18px;
        text-align: center;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .mobile-contact-link span {
        line-height: 1.4;
        word-break: break-word;
    }

    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 0.7rem;
        flex-wrap: wrap;
        padding-top: 0.4rem;
        margin-top: 0.2rem;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
        padding-bottom: 0.5rem;
    }

    .mobile-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 215, 0, 0.4);
        color: #FFFFFF;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .mobile-social-link:hover {
        background: rgba(255, 215, 0, 0.25);
        border-color: var(--color-gold-bright);
        color: var(--color-gold-bright);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }

    .mobile-social-link i {
        font-size: 1rem;
    }

    /* Navigation Changes for Mobile */
    .nav-wrapper {
        position: fixed;
        top: 2.7rem;
        right: 0;
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 53px);
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(250, 250, 250, 0.96) 100%);
        backdrop-filter: blur(15px);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        margin: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        text-align: left;
        width: 100%;
        border-radius: 0;
        display: block;
        font-weight: 500;
        letter-spacing: 0.3px;
        position: relative;
        overflow: hidden;
    }

    .search-toggle {
        width: 100%;
        padding: 0.65rem 1.5rem;
        justify-content: flex-start;
        text-align: left;
        font-size: 0.9rem;
        border-radius: 0;
    }

    .search-toggle i {
        margin-right: 0.5rem;
    }

    .search-bar {
        position: static;
        width: 100%;
        min-width: unset;
        padding: 0.8rem 1rem;
        border-radius: 0;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .search-input {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--gradient-gold);
        transform: translateX(-3px);
        transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.08) 0%,
            rgba(212, 175, 55, 0.03) 100%);
        color: var(--color-charcoal);
        padding-left: 1.8rem;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        transform: translateX(0);
    }

    /* Overlay when menu is open */
    body.mobile-menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        backdrop-filter: blur(2px);
    }
}

/* Mobile Landscape and Below (max-width: 768px) */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }

    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .site-logo {
        height: 38px;
    }

    .header {
        padding: 0.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Mobile Portrait (max-width: 640px) */
@media (max-width: 640px) {
    .nav-wrapper {
        width: 80%;
        max-width: 280px;
    }

    .site-logo {
        height: 35px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-brand {
        font-size: 2rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .site-logo {
        height: 32px;
    }

    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }

    .hamburger-line {
        height: 2.5px;
    }

    .nav-link {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold-primary);
}

.bg-maroon {
    background: var(--gradient-maroon-primary);
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}