@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    /* Fonts */
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Palette */
    --bg-primary: #F8F6F2;     /* Warm Ivory */
    --bg-secondary: #EFEDE8;   /* Soft Stone */
    --bg-card: #FFFFFF;        /* Pure White */
    --text-primary: #303030;   /* Charcoal */
    --text-secondary: #5A5854; /* Muted Charcoal */
    --text-muted: #8E8B85;     /* Warm Gray */
    --accent: #D7A441;         /* Luxury Gold */
    --accent-hover: #C59330;   /* Deep Gold */
    --border-color: #E2DFD8;   /* Soft Ivory Border */
    --border-light: #EFECE5;

    /* Spacing & Scales */
    --container-width: 1280px;
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    /* Soft Architectural Shadow */
    --shadow-soft: 0 20px 50px -12px rgba(48, 48, 48, 0.04);
    --shadow-hover: 0 40px 80px -20px rgba(197, 147, 48, 0.08);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    font-weight: 300;
    color: var(--text-secondary);
}

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

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section-padding {
    padding-top: clamp(6rem, 10vw, 11rem);
    padding-bottom: clamp(6rem, 10vw, 11rem);
}

.section-header {
    max-width: 720px;
    margin-bottom: clamp(4rem, 6vw, 7rem);
}

.section-header p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    margin-top: 20px;
    line-height: 1.8;
}

.gold-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 16px;
}

/* --- BUTTONS & INTERACTIONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 18px 36px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(215, 164, 65, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 164, 65, 0.25);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    margin-top: 15px;
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-link i {
    margin-left: 6px;
    transition: var(--transition-fast);
}

.btn-link:hover i {
    transform: translateX(4px);
}

/* --- NAVIGATION --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
    border-bottom: 1px solid transparent;
}

/* Transparent overlay link colors for high visibility against hero */
.site-header:not(.scrolled) .nav-menu a {
    color: #FFFFFF;
}
.site-header:not(.scrolled) .logo-fallback .brand-name {
    color: #FFFFFF;
}
.site-header:not(.scrolled) .btn-nav {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}
.site-header:not(.scrolled) .menu-toggle span {
    background-color: #FFFFFF;
}

/* Scrolled (solid background) state */
.site-header.scrolled {
    background-color: #F8F6F2;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}
.site-header.scrolled .nav-menu a {
    color: var(--text-secondary);
}
.site-header.scrolled .logo-fallback .brand-name {
    color: var(--text-primary);
}
.site-header.scrolled .btn-nav {
    border-color: var(--border-color);
    color: var(--text-primary);
}
.site-header.scrolled .menu-toggle span {
    background-color: var(--text-primary);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-fallback .brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.logo-fallback .brand-sub {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

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

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-menu a:hover {
    color: var(--accent) !important;
    text-shadow: 0 0 10px rgba(215, 164, 65, 0.4);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

/* Active Page Highlight and Underline */
.nav-menu a.active {
    color: var(--accent) !important;
    text-shadow: 0 0 8px rgba(215, 164, 65, 0.3);
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding-top: 80px;
}

.hero-content-wrapper h1 {
    color: #FFFFFF;
    margin-bottom: 24px;
}

.hero-content-wrapper p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-actions .btn-secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-secondary:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--text-primary);
}

.trust-badges {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-item i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* --- BEFORE & AFTER SLIDER (SIGNATURE EXPERIENCE) --- */
.slider-section {
    background-color: var(--bg-secondary);
}

.before-after-container {
    position: relative;
    width: 100%;
    height: clamp(450px, 50vw, 700px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    user-select: none;
    cursor: ew-resize;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.slide-img.after {
    clip-path: inset(0 0 0 50%);
    z-index: 10;
}

.slider-label {
    position: absolute;
    bottom: 24px;
    background-color: rgba(48, 48, 48, 0.7);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 20;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.before-label {
    left: 24px;
}

.after-label {
    right: 24px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #FFFFFF;
    z-index: 30;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--accent);
    transition: transform 0.25s ease;
}

.slider-button svg {
    width: 20px;
    height: 20px;
}

.before-after-container:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- TRUST & EDITORIAL CARDS --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-card {
    background-color: var(--bg-card);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(215, 164, 65, 0.2);
}

.trust-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--accent);
}

.trust-icon-box i {
    width: 26px;
    height: 26px;
}

.trust-card h3 {
    margin-bottom: 16px;
}

.trust-card p {
    font-size: 0.95rem;
}

/* --- SERVICES (EDITORIAL BLOCKS) --- */
.services-editorial-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: center;
}

.service-block-img {
    grid-column: span 7;
    height: 480px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

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

.service-block:hover .service-block-img img {
    transform: scale(1.05);
}

.service-block-content {
    grid-column: span 5;
    padding-left: 20px;
}

.service-block-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-block-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* Alternating blocks */
.service-block:nth-child(even) .service-block-img {
    grid-column: 6 / span 7;
    order: 2;
}

.service-block:nth-child(even) .service-block-content {
    grid-column: 1 / span 5;
    order: 1;
    padding-left: 0;
    padding-right: 20px;
}

/* --- FEATURED PROJECTS (ASYMMETRICAL PORTFOLIO) --- */
.projects-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

.project-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 520px;
}

/* Asymmetrical column span distribution */
.project-card:nth-child(1) {
    grid-column: span 8;
}
.project-card:nth-child(2) {
    grid-column: span 4;
}
.project-card:nth-child(3) {
    grid-column: span 4;
}
.project-card:nth-child(4) {
    grid-column: span 8;
}

.project-img {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(48,48,48,0) 40%, rgba(48,48,48,0.85) 100%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 10;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.project-meta {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.project-content h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.project-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    max-width: 500px;
    opacity: 0;
    transition: var(--transition-smooth);
    height: 0;
    overflow: hidden;
}

.project-card:hover .project-img img {
    transform: scale(1.06);
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-card:hover .project-content p {
    opacity: 1;
    height: auto;
    margin-top: 10px;
}

/* --- REMODELING PROCESS (MINIMAL TIMELINE) --- */
.process-section {
    background-color: var(--bg-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 72px;
    height: 72px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background-color: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.process-step p {
    font-size: 0.95rem;
    padding-right: 15px;
}

/* --- TESTIMONIAL PANELS --- */
.testimonials-grid {
    display: grid;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.testimonials-grid.reviews-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.testimonials-grid.reviews-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid.reviews-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid.reviews-cols-1 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-panel {
    background-color: var(--bg-card);
    padding: 40px 30px; /* slightly smaller padding for better desktop spacing */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.testimonial-quote {
    flex-grow: 1;
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 4rem;
    color: var(--bg-primary);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars-rating {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: 24px;
}

.stars-rating i {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.author-meta h4 {
    font-size: 1rem;
    font-weight: 700;
}

.author-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- BLOG PREVIEWS --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-img {
    height: 240px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* --- SERVICE AREAS & MAP --- */
.service-areas-section {
    background-color: var(--bg-secondary);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: center;
}

.map-wrapper {
    grid-column: span 7;
    height: 520px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areas-content {
    grid-column: span 5;
    padding-left: 20px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
    margin-top: 30px;
    list-style: none;
}

.cities-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cities-grid li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* --- INQUIRY FORMS & FINAL CTA --- */
.final-cta-section {
    position: relative;
    background-color: #383531; /* Warm luxury gray stone */
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25);
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 53, 49, 0.8) 0%, rgba(45, 43, 40, 0.92) 100%);
    z-index: 2;
}

.final-cta-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 60px;
    align-items: center;
}

.final-cta-info {
    grid-column: span 5;
}

.final-cta-info h2 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-size: 2.8rem;
}

.final-cta-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-text h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-text p {
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Consultation Questionnaire Form */
.form-panel-wrapper {
    grid-column: span 7;
}

.form-panel {
    background-color: var(--bg-card);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    border: 1px solid var(--border-light);
}

.form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-panel p {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* Middle Full Form Style */
.form-section {
    background-color: var(--bg-primary);
}

.form-wrapper {
    background-color: var(--bg-card);
    padding: 80px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.form-group-full {
    grid-column: span 2;
}

/* borderless bottom-line inputs */
.form-group {
    position: relative;
    margin-bottom: 12px;
}

.form-label {
    position: absolute;
    left: 0;
    top: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-bottom-color: var(--accent);
}

/* Floating label magic */
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -12px;
    font-size: 0.7rem;
    color: var(--accent);
}

/* Select element styling */
select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23D7A441' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom form errors and success alerts */
.form-alert {
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: none;
    font-weight: 500;
}

.form-alert.success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #C2E7C9;
}

.form-alert.error {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #181715; /* Different deep dark shade, clearly looking like the final section */
    color: rgba(255, 255, 255, 0.7);
    padding-top: 100px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column-1,
.footer-column-2,
.footer-column-3,
.footer-column-4 {
    grid-column: span 1;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-contact {
    grid-column: span 4;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- MOBILE CONVERSION BANNER --- */
.floating-mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
}

.floating-btn.call {
    background-color: var(--accent);
    color: #FFFFFF;
}

.floating-btn.consult {
    background-color: var(--text-primary);
    color: #FFFFFF;
}

/* --- IMAGE PLACEHOLDERS --- */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    border: 1px dashed #D2CDBF;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.placeholder-content {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
}

.placeholder-icon {
    width: 44px;
    height: 44px;
    color: var(--accent);
    margin-bottom: 12px;
    stroke-width: 1.5;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.placeholder-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Placeholders heights */
.service-block-img .image-placeholder {
    height: 480px;
}

.project-card .image-placeholder {
    height: 520px;
}

.blog-card .image-placeholder {
    height: 240px;
}

.map-wrapper .image-placeholder {
    height: 520px;
}

.slide-img.placeholder-slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* --- ANIMATIONS (SCROLL REVEALS) --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* Hide standard nav on tablet/mobile drawer style */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .btn-nav {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-block-img {
        grid-column: span 1 !important;
        height: 360px;
        order: 1 !important;
    }
    
    .service-block-content {
        grid-column: span 1 !important;
        padding: 0 !important;
        order: 2 !important;
    }
    
    .projects-masonry {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-card {
        grid-column: span 1 !important;
        height: 400px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline::after {
        display: none;
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    
    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .testimonials-grid.reviews-cols-4,
    .testimonials-grid.reviews-cols-3,
    .testimonials-grid.reviews-cols-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .testimonials-grid.reviews-cols-1 {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .testimonials-grid {
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-wrapper {
        grid-column: span 1;
        height: 380px;
    }
    
    .areas-content {
        grid-column: span 1;
        padding-left: 0;
    }
    
    .final-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .final-cta-info {
        grid-column: span 1;
    }
    
    .form-panel-wrapper {
        grid-column: span 1;
    }
    
    .form-panel {
        padding: 30px;
    }
    
    .form-wrapper {
        padding: 40px 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand, .footer-links, .footer-contact, .footer-column-1, .footer-column-2, .footer-column-3, .footer-column-4 {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .floating-mobile-actions {
        display: grid;
    }
}

/* --- FAQ ACCORDIONS (NATIVE HTML DETAILS/SUMMARY) --- */
details.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 24px 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    transition: var(--transition-fast);
    outline: none;
}

details.faq-item[open] {
    border-color: rgba(215, 164, 65, 0.3);
    box-shadow: var(--shadow-hover);
}

details.faq-item summary {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '+';
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

details.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

details.faq-item p {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


@media (max-width: 640px) {
    .testimonials-grid.reviews-cols-4,
    .testimonials-grid.reviews-cols-3,
    .testimonials-grid.reviews-cols-2,
    .testimonials-grid.reviews-cols-1 {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .before-after-container {
        height: 320px;
    }
}

/* --- PROMO POPUP SYSTEM --- */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 23, 21, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-content {
    background-color: #F8F6F2; /* Warm Ivory */
    border: 1px solid var(--accent);
    border-radius: var(--border-radius);
    padding: clamp(24px, 5vw, 40px);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-hover), 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.promo-popup-overlay.active .promo-popup-content {
    transform: scale(1);
}

.promo-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: var(--transition-fast);
}

.promo-popup-close:hover {
    color: var(--text-primary);
}

.promo-popup-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--text-primary);
    margin-top: 10px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.promo-popup-message {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.promo-popup-btn {
    display: inline-block;
    background-color: var(--accent);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.promo-popup-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 164, 65, 0.2);
}

.built-by-link:hover {
    color: var(--accent) !important;
    text-shadow: 0 0 10px rgba(215, 164, 65, 0.4);
}

