/* ========================================
   TAN TEKSTIL - PREMIUM TEXTILE THEME
   Professional, Elegant, Consistent Design
   ======================================== */

/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES - Premium Textile Palette
   ========================================== */
:root {
    /* Primary Colors - Deep Navy & Gold */
    --primary: #1a2744;
    --primary-dark: #0f1a2e;
    --primary-light: #2d3f5f;
    --primary-soft: rgba(26, 39, 68, 0.08);
    
    /* Accent Colors - Luxury Gold */
    --accent: #c4a35a;
    --accent-dark: #a88a3d;
    --accent-light: #d4b76a;
    --accent-soft: rgba(196, 163, 90, 0.1);
    
    /* Secondary - Warm Brown */
    --secondary: #8b7355;
    --secondary-light: #a68b6a;
    
    /* Success/Status Colors */
    --success: #4a9d7c;
    --success-soft: rgba(74, 157, 124, 0.1);
    --danger: #c45050;
    --danger-soft: rgba(196, 80, 80, 0.1);
    --warning: #d4a54a;
    --warning-soft: rgba(212, 165, 74, 0.1);
    
    /* Neutral Colors - Elegant Grays */
    --cream: #faf9f7;
    --cream-dark: #f5f4f2;
    --beige: #e8e5e0;
    --beige-dark: #d4d0c8;
    --gray-warm: #9a9590;
    --gray-50: #faf9f7;
    --gray-100: #f5f4f2;
    --gray-200: #e8e5e0;
    --gray-300: #d4d0c8;
    --gray-400: #9a9590;
    --gray-500: #6b6b6b;
    --gray-600: #4a4a4a;
    --gray-700: #333333;
    --gray-800: #1a1a1a;
    --gray-900: #0d0d0d;
    
    /* Background & Surface */
    --bg-body: #faf9f7;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --bg-section-alt: #f5f4f2;
    
    /* Text Colors */
    --text-primary: #1a2744;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    
    /* Borders */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: rgba(196, 163, 90, 0.3);
    
    /* Shadows - Refined */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 24px 80px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 30px rgba(196, 163, 90, 0.25);
    --shadow-navy: 0 8px 30px rgba(26, 39, 68, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
}

/* ==========================================
   BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-body);
    margin: 0;
    padding: 0;
}

/* ==========================================
   TYPOGRAPHY - Premium Fonts
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-top: 0;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }

/* ==========================================
   PREMIUM NAVBAR - Elegant Header
   ========================================== */
.navbar.site-navbar {
    background: transparent !important;
    padding: 20px 0 !important;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: var(--transition-base);
    border-bottom: none !important;
}

/* Top Bar - Contact Info */
.navbar-top-bar {
    background: var(--primary);
    padding: 10px 0;
    font-size: 0.875rem;
}

.navbar-top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.navbar-top-bar a:hover {
    color: var(--accent);
}

.navbar-top-bar i {
    color: var(--accent);
    margin-right: 6px;
}

/* Main Navbar */
.navbar .navbar-brand img {
    height: 70px !important;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.navbar .nav-link {
    color: #ffffff !important;
    font-family: var(--font-sans);
    font-weight: 500 !important;
    font-size: 0.9375rem;
    padding: 12px 20px !important;
    margin: 0 4px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    letter-spacing: 0.02em;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    transform: scaleX(1);
}

.navbar .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
}

.navbar .nav-link.active {
    color: #ffffff !important;
}

/* Online Collection Button */
.navbar .online-collection-link {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.navbar .online-collection-link:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 163, 90, 0.35);
}

.navbar .online-collection-link::before {
    display: none;
}

/* Mobile Navbar Toggle */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 8px 12px !important;
    border-radius: var(--radius-md) !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ==========================================
   HERO SECTION - Full Screen Impact
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(196, 163, 90, 0.15), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 163, 90, 0.1), transparent 50%);
    pointer-events: none;
}

/* Hero Pattern Overlay */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a35a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Header */
.hero-header {
    margin-bottom: 3rem;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-main-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Hero Products Grid */
.hero-products-wrapper {
    margin-top: 4rem;
}

.hero-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-product-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.hero-product-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-product-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
}

.hero-products-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.hero-all-products-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 28px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.hero-all-products-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================
   PAGE HERO - Subpages Banner
   ========================================== */
.page-hero,
.hero-section:not(.hero-sigorka) {
    min-height: 50vh;
    padding-top: 140px;
    padding-bottom: 80px;
}

/* ==========================================
   SECTION STYLING - Consistent Sections
   ========================================== */
section {
    position: relative;
}

.section-spacing {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-section-alt);
}

/* Section Heading - Premium Style */
.section-heading {
    margin-bottom: 4rem;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-heading p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   ABOUT SECTION - Homepage
   ========================================== */
.about-section {
    background: var(--bg-body);
    padding: 100px 0;
}

.about-content .eyebrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content .eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   COLLECTIONS SECTION - Slider Cards
   ========================================== */
.collections-section {
    background: var(--bg-section-alt);
    padding: 100px 0;
}

.collection-slide-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    height: 650px;
}

.collection-slide-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.collection-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.collection-image-wrapper img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.collection-slide-card:hover .collection-image-wrapper img {
    transform: scale(1.08);
}

.collection-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.95) 0%, rgba(26, 39, 68, 0.4) 50%, transparent 100%);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #ffffff;
}

.collection-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.collection-tag.eco { background: linear-gradient(135deg, #059669 0%, #10b981 100%); color: #ffffff; }
.collection-tag.prestige { background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); color: #ffffff; }
.collection-tag.sport { background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); color: #ffffff; }
.collection-tag.city { background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); color: #ffffff; }
.collection-tag.blue { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); color: #ffffff; }
.collection-tag.teal { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); color: #ffffff; }
.collection-tag.pink { background: linear-gradient(135deg, #db2777 0%, #ec4899 100%); color: #ffffff; }
.collection-tag.indigo { background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%); color: #ffffff; }
.collection-tag.gray { background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%); color: #ffffff; }
.collection-tag.black { background: linear-gradient(135deg, #1f2937 0%, #374151 100%); color: #ffffff; }
.collection-tag.gradient-sunset { background: linear-gradient(135deg, #f97316 0%, #ec4899 100%); color: #ffffff; }
.collection-tag.gradient-ocean { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); color: #ffffff; }
.collection-tag.gradient-forest { background: linear-gradient(135deg, #059669 0%, #84cc16 100%); color: #ffffff; }

.collection-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.collection-content p {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.collection-link:hover {
    color: var(--accent-light);
    gap: 12px;
}

/* ==========================================
   CARDS - Premium Design
   ========================================== */
.card,
.caravan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl) !important;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.card:hover,
.caravan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card .card-img-top,
.caravan-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-img-top,
.caravan-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.75rem !important;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   BUTTONS - Premium Design
   ========================================== */
.btn {
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: var(--shadow-navy);
}

.btn-primary:hover {
    background: var(--primary-light) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 39, 68, 0.3) !important;
}

.btn-accent {
    background: var(--accent) !important;
    color: var(--primary) !important;
    border: none !important;
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    background: var(--accent-light) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(196, 163, 90, 0.35) !important;
}

.btn-outline-primary {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #20bd5a !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35) !important;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ==========================================
   PREMIUM FOOTER - Elegant Design
   ========================================== */
.site-footer {
    background: #0A1220B8;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

/* Footer Pattern */
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

/* Footer Brand Block */
.footer-brand-block {
    max-width: 380px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    opacity: 0.95;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-checklist li i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* Footer Heading */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-links-grid a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-grid a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links-grid a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-links-grid a:hover::before {
    opacity: 1;
}

/* Footer Contact Card */
.footer-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.25rem;
}

.footer-contact-item > i {
    width: 44px;
    height: 44px;
    background: rgba(196, 163, 90, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact-item > div span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.footer-contact-item > div a,
.footer-contact-item > div p {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-contact-item > div a:hover {
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom .small {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1rem;
}

.footer-social-links .social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-page {
    background: var(--bg-body);
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(196, 163, 90, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.contact-eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
}

.contact-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-highlight-list li i {
    width: 32px;
    height: 32px;
    background: rgba(196, 163, 90, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-hero-card__item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero-card__item:last-child {
    border-bottom: none;
}

.contact-hero-card__item .label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.contact-hero-card__item .value {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Methods */
.contact-section-heading h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-section-heading p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-slow);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.contact-method-card .icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.contact-method-card .icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-method-card .icon.phone {
    background: rgba(26, 39, 68, 0.1);
    color: var(--primary);
}

.contact-method-card .icon.mail {
    background: rgba(196, 163, 90, 0.1);
    color: var(--accent);
}

.contact-method-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-method-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-method-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.contact-method-card .meta {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 991px) {
    .navbar .nav-link {
        padding: 12px 16px !important;
        margin: 4px 0;
        border-radius: var(--radius-md);
    }
    
    .navbar .online-collection-link {
        margin-top: 12px;
        text-align: center;
    }
    
    .hero-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero-product-mobile-hidden {
        display: none;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-brand-block {
        margin-bottom: 3rem;
    }
    
    .footer-links-block,
    .footer-contact-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding-top: 120px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-main-subtitle {
        font-size: 1rem;
    }
    
    .hero-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .hero-product-card {
        padding: 1rem 0.75rem;
    }
    
    .hero-product-icon {
        width: 44px;
        height: 44px;
    }
    
    .hero-product-icon i {
        font-size: 1.2rem;
    }
    
    .hero-product-name {
        font-size: 0.8rem;
    }
    
    .section-spacing {
        padding: 60px 0;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-wrapper::before {
        display: none;
    }
    
    .collections-section {
        padding: 60px 0;
    }
    
    .collection-slide-card {
        height: 350px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-hero {
        padding: 140px 0 60px;
    }
    
    .contact-method-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .navbar .navbar-brand img {
        height: 50px !important;
    }
    
    .hero-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-gold { color: var(--accent) !important; }
.text-navy { color: var(--primary) !important; }
.bg-navy { background-color: var(--primary) !important; }
.bg-gold { background-color: var(--accent) !important; }
.bg-cream { background-color: var(--cream) !important; }

/* Smooth Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Lift Effect */
.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
