/* ============================================
   QUINLANS PROPERTY - STYLES
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

:root {
    --primary: #1a5632;
    --primary-light: #2a7a48;
    --primary-dark: #0f3d22;
    --accent: #c8a44e;
    --accent-light: #dbbf6e;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg: #ffffff;
    --bg-light: #f7f7f2;
    --bg-warm: #faf8f4;
    --border: #e5e5e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--dark);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ---------- SECTION HELPERS ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ---------- AREAS TICKER ---------- */
.areas-ticker {
    background: var(--primary);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
}

.areas-ticker .container {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.ticker-label {
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    position: relative;
    z-index: 2;
    background: var(--primary);
    padding-right: 12px;
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.ticker-text {
    display: inline-block;
    animation: tickerScroll 25s linear infinite;
    padding-left: 100%;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-cta {
    color: var(--accent-light);
    font-weight: 600;
    transition: color var(--transition);
}
.top-bar-cta:hover { color: #fff; }

/* ---------- HEADER ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}
.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(26,86,50,0.06);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--primary-light) !important;
}

/* Desktop dropdown */
.nav-dropdown {
    position: relative;
}
.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
    z-index: 1002;
}
.nav-dropdown:hover .nav-sub {
    display: block;
}
.nav-sub .nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,86,50,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    padding: 100px 24px 80px;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.hero-trust-item svg { stroke: var(--accent-light); }

/* Hero form card */
.hero-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.hero-form-header {
    background: var(--primary);
    padding: 24px 28px;
    text-align: center;
}
.hero-form-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.hero-form-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.ghl-form-placeholder {
    padding: 24px 28px 28px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.dot.active {
    background: #fff;
    border-color: #fff;
}

/* ---------- FORMS (placeholder styling until GHL embed) ---------- */
.form-group { margin-bottom: 14px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,50,0.1);
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 12px;
}

/* ---------- PHOTO UPLOAD ---------- */
.photo-upload {
    position: relative;
}

.photo-upload-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.photo-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg-warm);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.photo-upload-label:hover {
    border-color: var(--primary);
    background: rgba(26,86,50,0.04);
}

.photo-upload-label svg {
    color: var(--primary);
    opacity: 0.7;
}

.photo-upload-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.photo-required {
    color: #dc2626;
    font-weight: 700;
}

.photo-upload-hint {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.photo-upload-lg .photo-upload-label {
    padding: 28px 20px;
}

/* Photo preview thumbnails */
.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.photo-preview:empty {
    display: none;
}

.photo-thumb {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-thumb-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Upload success state */
.photo-upload.has-photos .photo-upload-label {
    border-color: var(--primary);
    border-style: solid;
    background: rgba(26,86,50,0.06);
}

.photo-upload.has-photos .photo-upload-label svg {
    color: var(--primary);
    opacity: 1;
}

/* Hero form compact version */
.hero-form-card .photo-upload-label {
    padding: 14px 12px;
}

.hero-form-card .photo-upload-hint {
    font-size: 0.72rem;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--bg-warm);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}
.trust-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.services-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.service-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(26,86,50,0.04) 0%, #fff 100%);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(26,86,50,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: gap var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-link:hover { color: var(--primary-light); }

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.services-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: var(--bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images { position: relative; }
.about-img-main {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 28px 36px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 36px;
    box-shadow: var(--shadow-lg);
}

.stat { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 14px;
    margin: 28px 0 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark);
}
.about-feature svg { color: var(--primary); stroke: var(--primary); flex-shrink: 0; }

/* ---------- PROCESS ---------- */
.process {
    padding: 100px 0;
    background: var(--dark);
    color: #fff;
}

.process .section-tag { color: var(--accent-light); }
.process h2 { color: #fff; }
.process .section-desc { color: rgba(255,255,255,0.7); }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #fff;
    margin-bottom: 10px;
}
.process-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-connector {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin-top: 28px;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: box-shadow var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: var(--primary);
    padding: 60px 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 8px;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
    background: var(--bg-warm);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border: none;
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}
.faq-question:hover { color: var(--primary); }

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---------- ENQUIRY ---------- */
.enquiry {
    padding: 100px 0;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.enquiry-content h2 {
    margin-bottom: 16px;
}
.enquiry-content > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.enquiry-benefits {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}
.enquiry-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.enquiry-benefit svg { stroke: var(--primary); flex-shrink: 0; }

.enquiry-contact-info {
    background: var(--bg-warm);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.enquiry-contact-info p {
    color: var(--text-light);
    font-size: 0.92rem;
}
.enquiry-contact-info strong { color: var(--dark); }

.enquiry-form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.enquiry-placeholder {
    padding: 8px 4px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-links h4 {
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.footer-contact svg {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 24px 60px;
    }
    .hero-form-card { max-width: 480px; }
    .about-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .header-inner { height: 64px; }

    .mobile-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        background: #fff;
        z-index: 999;
        display: none;
        overflow-y: auto;
    }
    .nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px 100px;
        gap: 0;
        list-style: none;
    }
    .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        text-align: right;
        border-bottom: 1px solid var(--border);
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
        padding: 14px 24px !important;
        border-bottom: none !important;
    }

    /* Mobile sub-menu — hidden by default, revealed on tap */
    .nav-dropdown > .nav-link::after {
        content: '+';
        margin-left: 8px;
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--text-light);
    }
    .nav-dropdown.sub-open > .nav-link::after {
        content: '−';
    }
    .nav-sub {
        display: none;
        position: static;
        box-shadow: none;
        min-width: 0;
        padding: 0;
        background: rgba(0,0,0,0.02);
        width: 100%;
        list-style: none;
    }
    .nav-dropdown.sub-open .nav-sub {
        display: block;
    }
    .nav-sub .nav-link {
        padding: 12px 0;
        padding-right: 16px;
        font-size: 0.9rem;
        color: var(--text-light);
        text-align: right;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .nav-sub li:last-child .nav-link {
        border-bottom: 1px solid var(--border);
    }

    .hero { min-height: auto; }
    .hero-content { padding: 60px 24px 50px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 10px; }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid { grid-template-columns: 1fr; }
    .services-grid-3 { grid-template-columns: 1fr; }
    .services-grid-4 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-main { height: 350px; }
    .about-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -30px;
        margin-left: 20px;
        display: inline-flex;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .testimonial-grid { grid-template-columns: 1fr; }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .enquiry-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .mobile-sticky-cta { display: block; }
    .enquiry { padding-bottom: 140px; }
    .footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .trust-items { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-form-card { margin: 0 -8px; }
}

/* ============================================
   GET A QUOTE PAGE
   ============================================ */

/* ---------- QUOTE HERO BANNER ---------- */
.quote-hero {
    background: var(--primary);
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}
.quote-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.quote-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.quote-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.85;
}
.quote-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.quote-hero-divider {
    opacity: 0.5;
}

/* ---------- QUOTE MAIN SECTION ---------- */
.quote-main {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

/* ---------- QUOTE STEPS ---------- */
.quote-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.quote-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.quote-step .step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}
.quote-step h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}
.quote-step p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---------- PHOTO TIPS CARD ---------- */
.photo-tips-card {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}
.photo-tips-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}
.photo-tips-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.photo-tips-card li {
    position: relative;
    padding-left: 24px;
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.5;
}
.photo-tips-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ---------- QUOTE PAGE RESPONSIVE ---------- */
@media (max-width: 768px) {
    .quote-hero {
        padding: 80px 20px 40px;
    }
    .quote-hero h1 {
        font-size: 2rem;
    }
    .quote-hero-trust {
        flex-direction: column;
        gap: 8px;
    }
    .quote-hero-divider {
        display: none;
    }
    .quote-main {
        padding: 40px 0 140px;
    }
}
