/* ============================================
   Vintage Wall Hanger - Main Stylesheet
   Editorial, High-Contrast Design Studio Style
   ============================================ */

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

/* ============================================
   CSS Variables - Color Palette
   ============================================ */
:root {
    /* Primary Colors */
    --ink-black: #0a0a0a;
    --deep-charcoal: #1a1a1a;
    --warm-linen: #f5f0e8;
    --soft-ivory: #faf8f5;
    --near-black: #141414;
    --parchment-gold: #c9a962;
    --parchment-gold-hover: #d4b872;
    
    /* Additional Colors */
    --muted-gray: #6b6b6b;
    --light-gray: #e8e4dc;
    --border-light: rgba(201, 169, 98, 0.3);
    --border-dark: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1400px;
    --header-height: 90px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-dropdown: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--near-black);
    background-color: var(--warm-linen);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

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

.text-light {
    color: var(--soft-ivory);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background-color: var(--ink-black);
    color: var(--soft-ivory);
}

.section-charcoal {
    background-color: var(--deep-charcoal);
    color: var(--soft-ivory);
}

.section-light {
    background-color: var(--warm-linen);
    color: var(--near-black);
}

.section-ivory {
    background-color: var(--soft-ivory);
    color: var(--near-black);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--ink-black);
    height: var(--header-height);
    transition: var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--soft-ivory);
    letter-spacing: 0.02em;
}

.logo-text span {
    color: var(--parchment-gold);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--soft-ivory);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-fast);
}

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

.nav-link .arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-medium);
}

.nav-item:hover .nav-link .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Wallpaper Animation */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--deep-charcoal);
    border: 1px solid var(--border-dark);
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity var(--transition-dropdown), 
                visibility var(--transition-dropdown),
                transform var(--transition-dropdown);
    z-index: 100;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
    color: var(--soft-ivory);
    border-bottom: 1px solid var(--border-dark);
    opacity: 0;
    transform: translateY(-10px);
    transition: background-color var(--transition-fast),
                color var(--transition-fast),
                opacity 0.3s ease,
                transform 0.3s ease;
}

.nav-item:hover .dropdown-menu a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for dropdown items */
.nav-item:hover .dropdown-menu a:nth-child(1) { transition-delay: 0.05s; }
.nav-item:hover .dropdown-menu a:nth-child(2) { transition-delay: 0.1s; }
.nav-item:hover .dropdown-menu a:nth-child(3) { transition-delay: 0.15s; }
.nav-item:hover .dropdown-menu a:nth-child(4) { transition-delay: 0.2s; }
.nav-item:hover .dropdown-menu a:nth-child(5) { transition-delay: 0.25s; }
.nav-item:hover .dropdown-menu a:nth-child(6) { transition-delay: 0.3s; }
.nav-item:hover .dropdown-menu a:nth-child(7) { transition-delay: 0.35s; }
.nav-item:hover .dropdown-menu a:nth-child(8) { transition-delay: 0.4s; }
.nav-item:hover .dropdown-menu a:nth-child(9) { transition-delay: 0.45s; }
.nav-item:hover .dropdown-menu a:nth-child(10) { transition-delay: 0.5s; }
.nav-item:hover .dropdown-menu a:nth-child(11) { transition-delay: 0.55s; }

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--ink-black);
    color: var(--parchment-gold);
    padding-left: 32px;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--soft-ivory);
}

.header-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--parchment-gold);
}

.header-contact-item a:hover {
    color: var(--parchment-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--soft-ivory);
    transition: var(--transition-medium);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--ink-black);
    overflow: hidden;
    padding-top: var(--header-height);
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--parchment-gold);
    color: var(--parchment-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--soft-ivory);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-title span {
    color: var(--parchment-gold);
    font-style: italic;
}

.hero-description {
    color: rgba(250, 248, 245, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--soft-ivory);
    font-size: 0.9rem;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--parchment-gold);
}

/* Hero Form */
.hero-form-wrapper {
    background-color: var(--warm-linen);
    padding: 48px;
    padding-bottom: 60px;
    border-radius: 0;
    position: relative;
    z-index: 10;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--parchment-gold);
    color: var(--ink-black);
    border-color: var(--parchment-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--parchment-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--soft-ivory);
    border-color: var(--soft-ivory);
}

.btn-outline:hover {
    background-color: var(--soft-ivory);
    color: var(--ink-black);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--parchment-gold);
    border-color: var(--parchment-gold);
}

.btn-outline-gold:hover {
    background-color: var(--parchment-gold);
    color: var(--ink-black);
}

.btn-dark {
    background-color: var(--ink-black);
    color: var(--soft-ivory);
    border-color: var(--ink-black);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--ink-black);
    border-color: var(--ink-black);
}

/* ============================================
   Contact Form
   ============================================ */
.feedback-form-container {
    background-color: var(--warm-linen);
    padding: 40px;
}

.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--near-black);
    margin-bottom: 28px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--near-black);
    background-color: var(--soft-ivory);
    border: 1px solid var(--light-gray);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--parchment-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-gray);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 8px;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-black);
    background-color: var(--parchment-gold);
    border: 2px solid var(--parchment-gold);
    cursor: pointer;
    transition: var(--transition-medium);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--parchment-gold);
}

#form-success {
    text-align: center;
    padding: 30px;
}

#form-success p {
    color: var(--parchment-gold);
    font-size: 1.1rem;
    margin: 0;
}

/* Error Messages */
.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 6px;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--parchment-gold);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-gray);
    margin-bottom: 0;
}

.section-dark .section-header p {
    color: rgba(250, 248, 245, 0.7);
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--deep-charcoal);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--parchment-gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--parchment-gold);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--soft-ivory);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .btn {
    padding: 12px 24px;
    font-size: 0.75rem;
}

/* ============================================
   Gallery / Portfolio
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-medium);
}

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

.gallery-overlay span {
    color: var(--soft-ivory);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   Locations Grid
   ============================================ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.location-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: var(--deep-charcoal);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.location-card:hover img {
    transform: scale(1.1);
}

.location-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}

.location-card h3 {
    font-size: 1.1rem;
    color: var(--soft-ivory);
    margin-bottom: 8px;
}

.location-card p {
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 0;
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-image-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--parchment-gold);
    z-index: -1;
}

.about-content .subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--parchment-gold);
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--muted-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--parchment-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 40px;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--soft-ivory);
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    color: var(--soft-ivory);
    margin-bottom: 4px;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--parchment-gold);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--ink-black);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--soft-ivory);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(250, 248, 245, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1);
}

.map-info-card {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    background-color: var(--warm-linen);
    padding: 48px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.map-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--near-black);
}

.map-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.map-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--parchment-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.map-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--muted-gray);
}

.map-info-item a {
    color: var(--near-black);
}

.map-info-item a:hover {
    color: var(--parchment-gold);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--ink-black);
    color: var(--soft-ivory);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand p {
    color: rgba(250, 248, 245, 0.7);
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--parchment-gold);
    border-color: var(--parchment-gold);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: var(--soft-ivory);
    transition: var(--transition-fast);
}

.footer-social a:hover svg {
    fill: var(--ink-black);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--soft-ivory);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(250, 248, 245, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--parchment-gold);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--parchment-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.7);
}

.footer-contact-item a {
    color: rgba(250, 248, 245, 0.7);
}

.footer-contact-item a:hover {
    color: var(--parchment-gold);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.5);
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--parchment-gold);
}

/* ============================================
   Sticky Quote Button
   ============================================ */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 16px 28px;
    background-color: var(--parchment-gold);
    color: var(--ink-black);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.4);
    transition: var(--transition-medium);
    max-width: 180px;
    white-space: nowrap;
}

.sticky-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 169, 98, 0.5);
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--warm-linen);
    max-width: 550px;
    width: 100%;
    position: relative;
    transform: translateY(30px);
    transition: transform var(--transition-medium);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--light-gray);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--near-black);
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--ink-black);
    color: var(--soft-ivory);
    border-color: var(--ink-black);
}

.modal-content .feedback-form-container {
    padding: 50px;
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    padding: 180px 0 100px;
    background-color: var(--ink-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.page-header .breadcrumb a {
    color: rgba(250, 248, 245, 0.6);
}

.page-header .breadcrumb a:hover {
    color: var(--parchment-gold);
}

.page-header .breadcrumb span {
    color: var(--parchment-gold);
}

.page-header h1 {
    color: var(--soft-ivory);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(250, 248, 245, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Content Sections
   ============================================ */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    margin-bottom: 24px;
}

.content-main h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-main p {
    color: var(--muted-gray);
}

.content-main ul {
    margin-bottom: 24px;
}

.content-main ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--muted-gray);
}

.content-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--parchment-gold);
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background-color: var(--soft-ivory);
    padding: 32px;
    margin-bottom: 30px;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--near-black);
}

.sidebar-card ul li {
    margin-bottom: 12px;
}

.sidebar-card ul li a {
    color: var(--muted-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card ul li a:hover {
    color: var(--parchment-gold);
}

.sidebar-card ul li a::before {
    content: '→';
    color: var(--parchment-gold);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--near-black);
    transition: var(--transition-fast);
}

.faq-question:hover h3 {
    color: var(--parchment-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--parchment-gold);
    transition: var(--transition-fast);
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--muted-gray);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background-color: var(--ink-black);
    padding: 48px;
    color: var(--soft-ivory);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--parchment-gold);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--parchment-gold);
}

.contact-info-item p {
    margin-bottom: 0;
    color: rgba(250, 248, 245, 0.8);
}

.contact-info-item a {
    color: rgba(250, 248, 245, 0.8);
}

.contact-info-item a:hover {
    color: var(--parchment-gold);
}

/* ============================================
   Image Gallery Grid
   ============================================ */
.image-grid-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-grid-masonry .grid-item {
    overflow: hidden;
}

.image-grid-masonry .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.image-grid-masonry .grid-item.tall {
    grid-row: span 2;
}

.image-grid-masonry .grid-item.wide {
    grid-column: span 2;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
        --header-height: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form-wrapper {
        max-width: 500px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-info-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
    }
    
    .map-container {
        height: auto;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--ink-black);
        flex-direction: column;
        padding: 30px;
        transform: translateX(-100%);
        transition: transform var(--transition-medium);
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-dark);
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
        max-height: 0;
        overflow: hidden;
        background-color: transparent;
        border: none;
        transition: max-height var(--transition-medium);
    }
    
    .nav-item.active .dropdown-menu {
        max-height: 1000px;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        opacity: 1;
        transform: none;
        border-bottom: none;
        border-left: 2px solid var(--parchment-gold);
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .sticky-quote-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .image-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid-masonry .grid-item.tall,
    .image-grid-masonry .grid-item.wide {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-form-wrapper {
        padding: 30px 20px;
    }
    
    .feedback-form-container {
        padding: 30px 20px;
    }
    
    .modal-content .feedback-form-container {
        padding: 40px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   Locations List Grid (Text Only)
   ============================================ */
.locations-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.location-list-item {
    display: block;
    padding: 30px 25px;
    background-color: var(--soft-ivory);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition-medium);
}

.location-list-item:hover {
    background-color: var(--ink-black);
    border-color: var(--ink-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-list-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--near-black);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.location-list-item:hover h3 {
    color: var(--parchment-gold);
}

.location-list-item p {
    font-size: 0.85rem;
    color: var(--muted-gray);
    margin-bottom: 0;
    transition: var(--transition-fast);
}

.location-list-item:hover p {
    color: rgba(250, 248, 245, 0.7);
}

/* Responsive for locations list */
@media (max-width: 1200px) {
    .locations-list-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .locations-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .locations-list-grid {
        grid-template-columns: 1fr;
    }
    
    .location-list-item {
        padding: 25px 20px;
    }
}
