/* ======================
   COACH STOP ANTIQUES
   Premium Antique Shop Design
   ====================== */

/* CSS RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary-gold: #D4AF37;
    --deep-gold: #B8941F;
    --rich-brown: #3C2414;
    --warm-brown: #5D4037;
    --soft-cream: #FFF8E7;
    --ivory: #F7F3E8;
    --charcoal: #2C2C2C;
    --silver-gray: #8E8E93;
    --accent-copper: #B87333;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
    --brown-gradient: linear-gradient(135deg, var(--warm-brown), var(--rich-brown));
    --luxury-gradient: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-copper) 50%, var(--rich-brown) 100%);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Crimson Text', serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 120px 0;
    --container-max-width: 1400px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(60, 36, 20, 0.08);
    --shadow-medium: 0 8px 30px rgba(60, 36, 20, 0.12);
    --shadow-strong: 0 15px 40px rgba(60, 36, 20, 0.2);
    
    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* BASE STYLES */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--rich-brown);
    background-color: var(--soft-cream);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--rich-brown);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(2rem, 4vw, 3rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }

.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--warm-brown);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--gold-gradient);
    color: white;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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: var(--transition-smooth);
}

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

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--rich-brown);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
}

/* ======================
   NAVIGATION
   ====================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(247, 243, 232, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--rich-brown);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--rich-brown);
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary-gold);
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--rich-brown);
    cursor: pointer;
}

/* ======================
   HERO SECTION
   ====================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--soft-cream);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 148, 31, 0.03) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 100vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--rich-brown);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: var(--primary-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--warm-brown);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--warm-brown);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

.stars {
    display: flex;
    gap: 0.2rem;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.stars i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--warm-brown);
    font-family: var(--font-accent);
    font-size: 0.95rem;
}

.hero-location i {
    color: var(--primary-gold);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: var(--gold-gradient);
    padding: 8px;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.hero-accent-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.accent-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.accent-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
}

.accent-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
}

.accent-line {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 2px;
    background: var(--gold-gradient);
    transform: translateY(-50%) rotate(45deg);
}

.hero-floating-card {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    max-width: 280px;
    border: 1px solid var(--primary-gold);
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.floating-card-icon i {
    color: white;
    font-size: 1.5rem;
}

.floating-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--rich-brown);
}

.floating-card-content p {
    font-size: 0.9rem;
    color: var(--warm-brown);
    line-height: 1.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--warm-brown);
    z-index: 3;
}

.scroll-text {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ======================
   FEATURED SECTION
   ====================== */

.featured-section {
    padding: var(--section-padding);
    background: var(--ivory);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.featured-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.featured-large {
    grid-row: span 2;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-large .featured-image {
    height: 400px;
}

.featured-item:not(.featured-large) .featured-image {
    height: 250px;
}

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

.featured-item:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.featured-badge {
    background: var(--gold-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rich-brown);
}

.featured-content p {
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-category,
.featured-era {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.featured-category {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.featured-era {
    background: rgba(60, 36, 20, 0.1);
    color: var(--rich-brown);
}

/* ======================
   COLLECTION SECTION
   ====================== */

.collection-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
}

.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--rich-brown);
    font-family: var(--font-accent);
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold-gradient);
    color: white;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.collection-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(60, 36, 20, 0.95));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

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

.collection-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.collection-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.overlay-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-icon i {
    color: white;
}

/* ======================
   HERITAGE SECTION
   ====================== */

.heritage-section {
    padding: var(--section-padding);
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.heritage-background {
    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"><defs><pattern id="heritage" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23heritage)"/></svg>');
}

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

.heritage-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--warm-brown);
}

.heritage-stats {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.heritage-stat {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--rich-brown);
}

.stat-content p {
    color: var(--warm-brown);
    line-height: 1.6;
}

.heritage-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.heritage-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-gradient);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-accent);
    font-weight: 500;
    box-shadow: var(--shadow-medium);
}

.heritage-badge i {
    font-size: 1.2rem;
}

/* ======================
   SERVICES SECTION
   ====================== */

.services-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
}

.services-showcase {
    display: grid;
    gap: 4rem;
}

.service-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-gold);
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.service-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--rich-brown);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--warm-brown);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-accent);
    color: var(--warm-brown);
}

.service-features i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.service-testimonial {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.service-testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--rich-brown);
}

.service-testimonial span {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--warm-brown);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--rich-brown);
}

.service-card p {
    color: var(--warm-brown);
    line-height: 1.6;
}

/* ======================
   SHAW FESTIVAL SECTION
   ====================== */

.shaw-festival-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.shaw-festival-section::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"><defs><pattern id="cultural" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15,5 L25,15 L15,25 L5,15 Z" stroke="%23D4AF37" stroke-width="0.5" fill="none" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23cultural)"/></svg>');
}

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

.shaw-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--warm-brown);
    margin-bottom: 3rem;
}

.shaw-highlights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.highlight-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--rich-brown);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    color: var(--warm-brown);
    font-size: 0.95rem;
    margin: 0;
}

.shaw-quote {
    background: var(--gold-gradient);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--rich-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-mark i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.shaw-quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.cultural-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.shaw-visual {
    position: relative;
}

.shaw-image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    margin-bottom: 2rem;
}

.shaw-image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(60, 36, 20, 0.9));
    padding: 2rem;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-accent);
    font-weight: 500;
}

.attraction-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.attraction-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon i {
    color: white;
    font-size: 1.3rem;
}

.attraction-card h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--rich-brown);
    margin-bottom: 0.5rem;
}

.attraction-card p {
    color: var(--warm-brown);
    font-size: 0.9rem;
    margin: 0;
}

/* ======================
   WHY CHOOSE US SECTION
   ====================== */

.why-choose-section {
    padding: var(--section-padding);
    background: var(--ivory);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(184, 148, 31, 0.02) 0%, transparent 50%);
}

.why-choose-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.premium-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-gold);
}

.card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.premium-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}



.premium-card .card-icon i {
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--rich-brown);
    margin: 0;
}

.card-content {
    padding: 0 2.5rem 2.5rem;
}

.card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--warm-brown);
    margin-bottom: 2rem;
}

.card-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-sm);
}

.card-feature i {
    color: var(--primary-gold);
    font-size: 1rem;
    width: 20px;
}

.card-feature span {
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--rich-brown);
}

/* ======================
   TESTIMONIALS SECTION
   ====================== */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

.testimonials-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4rem;
}

.testimonial-featured {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--primary-gold);
    text-align: center;
    position: relative;
}

.testimonial-featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.testimonial-quote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--rich-brown);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--rich-brown);
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-rating .stars {
    margin-bottom: 0;
}

.author-rating span {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--warm-brown);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    justify-content: flex-start;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.testimonials-summary {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.summary-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.summary-rating {
    text-align: center;
}

.big-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
}

.rating-stars {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.rating-stars i {
    color: var(--primary-gold);
}

.summary-item {
    text-align: center;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.summary-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.summary-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--rich-brown);
}

.summary-item p {
    color: var(--warm-brown);
    font-size: 0.9rem;
}

.summary-divider {
    width: 1px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
}

/* ======================
   CONTACT & FOOTER
   ====================== */

.contact {
    padding: var(--section-padding);
    background: var(--soft-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--rich-brown);
}

.contact-details p {
    color: var(--warm-brown);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--deep-gold);
}

.contact-map {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius-lg);
}

.footer {
    background: var(--rich-brown);
    color: var(--soft-cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.footer-section p {
    color: rgba(247, 243, 232, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(247, 243, 232, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-section ul li i {
    width: 20px;
    color: var(--primary-gold);
    margin-right: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(247, 243, 232, 0.6);
    font-family: var(--font-accent);
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

@media (max-width: 1024px) {
    .hero-container {
        gap: 4rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background: rgba(247, 243, 232, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .heritage-content,
    .service-featured,
    .contact-content,
    .shaw-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shaw-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .cultural-cta {
        flex-direction: column;
    }
    
    .attraction-cards {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .premium-card .card-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .premium-card .card-content {
        padding: 0 1.5rem 2rem;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .summary-divider {
        width: 60px;
        height: 1px;
    }
    
    .collection-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-floating-card {
        position: static;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .hero-distinction {
        text-align: center;
    }
    
    .distinction-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .distinction-text {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collection-item {
        min-width: auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .shaw-quote {
        padding: 1.5rem;
    }
    
    .shaw-quote p {
        font-size: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .premium-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .premium-card .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
}

/* ======================
   ANIMATIONS & EFFECTS
   ====================== */

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

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

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

/* Apply entrance animations */
.hero-content > * {
    animation: fadeInLeft 0.8s ease forwards;
}

.hero-visual {
    animation: fadeInRight 0.8s ease forwards;
}

.featured-item,
.collection-item,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animations */
.featured-item:nth-child(1) { animation-delay: 0.1s; }
.featured-item:nth-child(2) { animation-delay: 0.2s; }
.featured-item:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

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