/* 
 * Philly Wallpaper Studio - Main Stylesheet
 * Color Palette: Deep Forest Green Theme
 * Fonts: Cormorant Garamond (headings) + Source Sans Pro (body)
 */

/* 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=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
    /* Primary Colors - Deep Forest Green Theme */
    --primary-bg: #1a3a2f;
    --secondary-bg: #2d4a3e;
    --dark-olive: #3d5a4c;
    --warm-linen: #f5f0e8;
    --soft-cream: #faf8f5;
    --deep-green-gray: #2a3d35;
    --accent-clay: #c9a87c;
    --accent-gold: #d4af37;
    --accent-hover: #e0c18a;
    
    /* Text Colors */
    --text-light: #faf8f5;
    --text-dark: #2a3d35;
    --text-muted: #6b7c72;
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
}

/* Reset & Base */
*, *::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(--text-dark);
    background-color: var(--warm-linen);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

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

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

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

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TOP BAR WITH CONTACT INFO
   ======================================== */
.top-bar {
    background: var(--primary-bg);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-contact a {
    color: var(--soft-cream);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.top-bar-contact a:hover {
    color: var(--accent-clay);
}

.top-bar-contact svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.top-bar-address {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: var(--secondary-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--soft-cream);
    letter-spacing: 0.03em;
}

.logo span {
    color: var(--accent-clay);
    font-style: italic;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: var(--soft-cream);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition-medium);
}

.nav-link:hover {
    background: rgba(201, 168, 124, 0.15);
    color: var(--accent-clay);
}

/* Dropdown Arrow */
.nav-link.has-dropdown::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-medium);
}

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

/* ========================================
   DROPDOWN MENU - CASCADE UNFOLD ANIMATION
   ======================================== */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--primary-bg);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: perspective(600px) rotateX(-15deg);
    transform-origin: top center;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: perspective(600px) rotateX(0deg);
}

.dropdown-item {
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
}

/* Cascade animation - each item appears sequentially */
.nav-item:hover .dropdown-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.nav-item:hover .dropdown-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.nav-item:hover .dropdown-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.nav-item:hover .dropdown-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.nav-item:hover .dropdown-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.nav-item:hover .dropdown-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.nav-item:hover .dropdown-item:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.nav-item:hover .dropdown-item:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.nav-item:hover .dropdown-item:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.nav-item:hover .dropdown-item:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.nav-item:hover .dropdown-item:nth-child(11) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.dropdown-link {
    display: block;
    padding: 14px 24px;
    color: var(--soft-cream);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-clay);
    transform: scaleY(0);
    transition: transform var(--transition-medium);
}

.dropdown-link:hover {
    background: rgba(201, 168, 124, 0.1);
    color: var(--accent-clay);
    padding-left: 32px;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

.dropdown-item:last-child .dropdown-link {
    border-bottom: none;
}

/* Header CTA Button */
.header-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-clay);
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    margin-left: 20px;
    transition: var(--transition-medium);
}

.header-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 124, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-wallpaper-installation-philadelphia.webp') center/cover no-repeat;
    opacity: 0.25;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--soft-cream);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--accent-clay);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 550px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--soft-cream);
}

.badge svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-clay);
}

/* ========================================
   CONTACT FORM STYLES
   ======================================== */
.feedback-form-container {
    background: var(--warm-linen);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-bg);
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--soft-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-medium);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-clay);
    box-shadow: 0 0 0 4px rgba(201, 168, 124, 0.2);
}

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary-bg);
    color: var(--soft-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.submit-btn:hover {
    background: var(--accent-clay);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 124, 0.4);
}

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

#form-success p {
    color: var(--primary-bg);
    font-size: 1.1rem;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--primary-bg);
    color: var(--soft-cream);
}

.section-olive {
    background: var(--secondary-bg);
    color: var(--soft-cream);
}

.section-light {
    background: var(--warm-linen);
    color: var(--text-dark);
}

.section-cream {
    background: var(--soft-cream);
    color: var(--text-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

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

.section-title p {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.15rem;
    opacity: 0.9;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--soft-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    color: var(--primary-bg);
    margin-bottom: 15px;
}

.service-card-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-clay);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.card-link:hover {
    color: var(--primary-bg);
}

.card-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.card-link:hover svg {
    transform: translateX(5px);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-medium);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--accent-clay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-bg);
}

.feature-item h3 {
    margin-bottom: 15px;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    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-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 47, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

/* ========================================
   SERVICE AREAS SECTION
   ======================================== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-card {
    display: block;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-card:hover {
    background: var(--accent-clay);
    color: var(--primary-bg);
    transform: translateY(-5px);
}

.area-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--soft-cream);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-clay);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-bg);
}

.testimonial-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-info {
    color: var(--soft-cream);
}

.map-info h2 {
    margin-bottom: 30px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.map-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-clay);
    flex-shrink: 0;
    margin-top: 3px;
}

.map-info-item h4 {
    margin-bottom: 5px;
}

.map-info-item p {
    margin: 0;
    opacity: 0.9;
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-embed iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-bg), var(--dark-olive));
    text-align: center;
    color: var(--soft-cream);
}

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

.cta-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-clay);
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 40px;
    transition: var(--transition-medium);
}

.cta-btn:hover {
    background: var(--soft-cream);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 124, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--deep-green-gray);
    color: var(--soft-cream);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent-clay);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-clay);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-clay);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========================================
   STICKY QUOTE BUTTON
   ======================================== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 18px 35px;
    background: var(--accent-clay);
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(201, 168, 124, 0.5);
    transition: var(--transition-medium);
    animation: pulse 2s infinite;
}

.sticky-quote-btn:hover {
    background: var(--soft-cream);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(201, 168, 124, 0.6);
    animation: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(201, 168, 124, 0.5); }
    50% { box-shadow: 0 10px 50px rgba(201, 168, 124, 0.8); }
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 58, 47, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.modal-content {
    background: var(--warm-linen);
    border-radius: 25px;
    max-width: 550px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-medium);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 1;
}

.modal-close:hover {
    background: var(--accent-clay);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: var(--soft-cream);
}

.modal-content .feedback-form-container {
    box-shadow: none;
}

/* ========================================
   PAGE HEADER (INNER PAGES)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--soft-cream);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-wallpaper-installation-philadelphia.webp') center/cover no-repeat;
    opacity: 0.15;
}

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

.page-header h1 {
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a:hover {
    color: var(--accent-clay);
}

.breadcrumb span {
    color: var(--accent-clay);
}

/* ========================================
   CONTENT PAGE STYLES
   ======================================== */
.content-section {
    padding: 80px 0;
}

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

.content-main h2 {
    color: var(--primary-bg);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--soft-cream);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    color: var(--primary-bg);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.faq-item {
    background: var(--soft-cream);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(201, 168, 124, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-clay);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

/* ========================================
   FIGURE & FIGCAPTION
   ======================================== */
figure {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
}

figure img {
    width: 100%;
}

figcaption {
    padding: 15px 20px;
    background: var(--soft-cream);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .dropdown {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        max-height: 500px;
    }
    
    .dropdown-item {
        opacity: 1;
        transform: none;
    }
    
    .header-cta {
        margin: 15px 0 0;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-form-container {
        padding: 25px;
    }
}

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

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

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

.animate-slide-up {
    animation: slideUp 0.6s ease forwards;
}

/* Error message styling for form validation */
.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}
