/* =============================================
   PUZZLE CONSTRUCTIONS GROUP - STYLES
   Modern-Industrial Design System
   ============================================= */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-primary: #1a2332;
    --color-primary-dark: #0f1520;
    --color-secondary: #2d3748;
    --color-accent: #c9a227;
    --color-accent-light: #dbb84a;
    --color-accent-dark: #a8861f;
    --color-white: #ffffff;
    --color-light: #f7f8fa;
    --color-grey: #e2e8f0;
    --color-text: #4a5568;
    --color-text-light: #718096;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Font Sizes */
    --fs-h1: clamp(2.5rem, 5vw, 4rem);
    --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

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

/* Section */
.section {
    padding: var(--spacing-xl) 0;
}

.section__title {
    margin-bottom: var(--spacing-lg);
}

.section__title--center {
    text-align: center;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

.header.scrolled {
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

.nav__logo img {
    height: 48px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav__logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .nav__logo img {
        height: 40px;
    }
}

.footer__logo-img {
    height: 60px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav__link {
    color: var(--color-white);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-medium);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 25px;
}

.nav__tel {
    font-weight: 500;
    color: var(--color-white);
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-body);
    display: none;
}

@media (min-width: 968px) {
    .nav__tel {
        display: inline-block;
    }
}

.nav__tel:hover {
    color: var(--color-accent);
}

.nav__cta {
    background: var(--color-accent);
    color: var(--color-primary) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav__cta:hover {
    background: var(--color-accent-light);
}

.nav__cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-body);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn--gold {
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn--gold:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 35, 50, 0.8) 0%,
            rgba(26, 35, 50, 0.6) 40%,
            rgba(26, 35, 50, 0.95) 100%);
}

.hero__content {
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-lg) var(--spacing-md);
}

.hero__title {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    /* ~32px → ~50px */
    line-height: 1.1;
    max-width: 22ch;
    /* prevents super-wide lines */
    margin-inline: auto;
    /* keeps it centered if centered layout */
    text-wrap: balance;
    /* safe progressive enhancement */
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    color: var(--color-grey);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--color-light);
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.badge-icon {
    color: var(--color-accent);
    margin-right: 0.25rem;
}

.badge-separator {
    color: var(--color-grey);
    opacity: 0.5;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: var(--fs-small);
    opacity: 0.7;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background: var(--color-light);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about__content {
    padding-right: var(--spacing-md);
}

.about__text {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

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

.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 200px;
    text-align: center;
    border: 4px solid var(--color-white);
}

.experience-badge__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience-badge__text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        width: 90%;
        max-width: 300px;
    }
}

.about__text {
    margin-bottom: var(--spacing-sm);
    /* Tightened from md */
    color: var(--color-text);
    line-height: 1.6;
    /* Ensure readability */
}

.about__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--color-accent);
    z-index: 1;
}

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

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
    background: var(--color-light);
}

.process__steps {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--color-grey-light);
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .process__steps::before {
        display: block;
    }

    .process__step {
        flex: 1;
    }
}

.process__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-sm);
    flex: 0 0 100%;
}

.process__number {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.process__step:hover .process__number {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.process__title {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.process__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
/* ... existing service styles ... */
.service-card {
    /* ... existing props ... */
    text-decoration: none;
    /* remove default underline */
}

/* New Hover Label */
.service-card__label {
    margin-top: auto;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

.service-card:hover .service-card__label {
    opacity: 1;
    transform: translateY(0);
}

/* Services Page Specific Card Styles */
.services-grid .service-card {
    justify-content: flex-start;
    min-height: auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    /* Allow hover effects? Or keep hidden? Card radius... */
}

/* Re-apply radius to image explicitly, card itself might not need it if transparent */
.service-card-full__image {
    position: relative;
    height: 250px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    /* Optional: add shadow to image itself */
}

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

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

.service-card-full__content {
    color: var(--color-primary);
}

.service-card-full__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.service-card-full__text {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card-full__link {
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.service-card:hover .service-card-full__link {
    gap: 0.75rem;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials.section {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

/* CSS for star row and list-like testimonials */
.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-grey);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:not(a) {
    cursor: default;
}

.testimonial-card:not(a):hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

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

/* Ensure full width in slide */

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.testimonial-card__project {
    display: block;
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-top: 0.2rem;
    font-weight: 500;
}

.services {
    background: var(--color-white);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services__cta {
    text-align: center;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card__image {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.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.05);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 35, 50, 0.95) 0%,
            rgba(26, 35, 50, 0.4) 50%,
            rgba(26, 35, 50, 0.2) 100%);
}

.service-card__content {
    position: relative;
    padding: var(--spacing-md);
    color: var(--color-white);
}

.service-card__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card__title::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card__title::after {
    transform: translateX(5px);
}

.service-card__text {
    font-size: var(--fs-small);
    color: var(--color-grey);
}

/* =============================================
   WHY CHOOSE SECTION
   ============================================= */
.why-choose {
    background: var(--color-light);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a2332' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-choose__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 576px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-choose__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid var(--color-grey);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.feature-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.feature-card__text {
    font-size: var(--fs-small);
    color: var(--color-text-light);
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects {
    padding: 80px 0 60px;
    background: var(--color-primary);
    color: var(--color-white);
}

.projects .section__title {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.projects .section__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 1;
}

.project-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--color-white);
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.project-card__location {
    display: block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.project-card__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.project-card .btn--outline {
    border-color: var(--color-white);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Hover Effects */
.project-card:hover img {
    transform: scale(1.08);
}

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

.project-card:hover .btn--outline {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .projects__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    background: var(--color-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-card__author {
    border-top: 1px solid var(--color-grey-light);
    padding-top: var(--spacing-sm);
}

.testimonial-card__name {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-card__location {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* =============================================
   AREAS WE COVER SECTION
   ============================================= */
.areas {
    background: linear-gradient(rgba(26, 35, 50, 0.9), rgba(26, 35, 50, 0.9)), url('images/hero_bg_1765880918473.png');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    background-attachment: fixed;
}

.areas .section__title {
    color: var(--color-white);
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.areas__title {
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.areas__list {
    list-style: none;
    padding: 0;
}

.areas__list li {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    background: var(--color-white);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-grey-light);
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform var(--transition-short);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

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

.faq__item.active .faq__answer {
    max-height: 200px;
    /* Approximate max height */
}

.faq__answer p {
    padding-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.6;
}



.project-card__tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-card__title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.project-card__caption {
    color: var(--color-grey);
    font-size: var(--fs-small);
}

.carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.carousel__btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel__btn:hover {
    background: var(--color-accent);
}

.carousel__btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.carousel__btn:hover svg {
    stroke: var(--color-primary);
}

.carousel__dots {
    display: flex;
    gap: 0.5rem;
}

.carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel__dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta__content {
    margin-bottom: var(--spacing-lg);
}

.cta__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    margin: var(--spacing-sm) auto 0;
}

.cta__subtitle {
    color: var(--color-grey);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__contact {
    display: flex;
    justify-content: center;
}

.cta__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.cta__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-grey);
    transition: color var(--transition-fast);
}

.cta__link:hover {
    color: var(--color-accent);
}

.cta__link svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-grey);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 576px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 2fr 1.5fr;
        /* Increased Contact column size */
    }
}

.footer__logo {
    display: flex;
    gap: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer__tagline {
    color: var(--color-accent);
    font-style: italic;
}

.footer__heading {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links ul li,
.footer__areas ul li {
    margin-bottom: 0.5rem;
}

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

.footer__contact address {
    font-style: normal;
}

.footer__contact p {
    margin-bottom: 0.25rem;
}

.footer__contact a {
    word-break: break-all;
    /* Force break for very long emails */
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: var(--fs-small);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.prepare-anim {
    opacity: 0;
    transform: translateY(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   GALLERY SECTION (Service Pages)
   ============================================= */
.gallery {
    background: var(--color-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--color-white);
}

.gallery__caption h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-white);
}

.gallery__location {
    display: block;
    font-weight: 600;
    color: var(--color-accent);
    font-size: var(--fs-small);
}

.gallery__type {
    display: block;
    font-size: var(--fs-small);
    color: var(--color-grey);
}

/* =============================================
   ABOUT PAGE - HERO LIGHTER OVERLAY
   ============================================= */
.hero__overlay--lighter {
    background: linear-gradient(to bottom,
            rgba(26, 35, 50, 0.6) 0%,
            rgba(26, 35, 50, 0.4) 50%,
            rgba(26, 35, 50, 0.85) 100%);
}

/* =============================================
   ABOUT PAGE - STORY SECTION
   ============================================= */
.story {
    background: var(--color-light);
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .story__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story__content {
    padding-right: var(--spacing-md);
}

.story__text {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.8;
}

.story__text:last-child {
    margin-bottom: 0;
}

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

.story__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--color-accent);
    z-index: 1;
}

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

/* =============================================
   ABOUT PAGE - VALUES SECTION
   ============================================= */
.values {
    background: var(--color-white);
}

.values__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.values__intro {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
}

.values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 576px) {
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid var(--color-grey);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.value-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.value-card__text {
    font-size: var(--fs-small);
    color: var(--color-text-light);
}

/* =============================================
   ABOUT PAGE - TEAM SECTION
   ============================================= */
.team {
    background: var(--color-light);
}

.team__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.team__intro {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
}

.team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .team__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

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

.team-card:hover .team-card__name {
    color: var(--color-accent);
}

.team-card:hover .team-card__name::after {
    width: 100%;
}

.team-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.team-card__content {
    padding: var(--spacing-md);
    text-align: center;
}

.team-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    transition: color var(--transition-fast);
}

.team-card__name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-medium);
}

.team-card__role {
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.team-card__bio {
    color: var(--color-text-light);
    font-size: var(--fs-small);
    line-height: 1.6;
}

/* =============================================
   ABOUT PAGE - CERTIFICATIONS SECTION
   ============================================= */
.certifications {
    background: var(--color-primary);
    color: var(--color-white);
}

.certifications .section__title {
    color: var(--color-white);
}

.certifications__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.certifications__intro {
    color: var(--color-grey);
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.certifications__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.certification-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    min-width: 140px;
    transition: all var(--transition-medium);
}

.certification-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.certification-badge__icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-badge__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.certification-badge__text {
    font-size: var(--fs-small);
    font-weight: 600;
    text-align: center;
    color: var(--color-grey);
}

/* =============================================
   ABOUT PAGE - TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    background: var(--color-light);
}

.testimonials__slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonials__track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-card__quote {
    margin-bottom: var(--spacing-md);
}

.quote-icon {
    width: 40px;
    height: 40px;
    fill: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.testimonial-card__text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
}

.testimonial-card__author {
    margin-top: var(--spacing-md);
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.testimonial-card__location {
    color: var(--color-text-light);
    font-size: var(--fs-small);
}

.testimonial-card__link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--fs-small);
    transition: color 0.2s ease;
}

.testimonial-card__link:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-grey);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonials__dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

.testimonials__dot:hover {
    background: var(--color-accent-light);
}

/* =============================================
   ABOUT PAGE - MAP SECTION
   ============================================= */
.map {
    padding: 0;
}

.map__container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto;
    max-width: var(--container-max);
    padding: 0 var(--container-padding);
}

.map__container iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .map__container {
        padding: 0;
        border-radius: 0;
    }

    .map__container iframe {
        border-radius: 0;
    }
}

/* =============================================
   SERVICES PAGE - INTRO SECTION
   ============================================= */
.services-intro {
    background: var(--color-white);
    text-align: center;
}

.services-intro__content {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-top: var(--spacing-md);
}

/* =============================================
   SERVICES PAGE - GRID SECTION
   ============================================= */
.services-grid-section {
    background: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =============================================
   SERVICES PAGE - FULL SERVICE CARDS
   ============================================= */
.service-card-full {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    text-decoration: none;
}

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

.service-card-full__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-full__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 35, 50, 0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card-full:hover .service-card-full__overlay {
    opacity: 1;
}

.service-card-full__content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-full__title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.service-card-full:hover .service-card-full__title {
    color: var(--color-accent-dark);
}

.service-card-full__text {
    font-size: var(--fs-small);
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--spacing-sm);
}

.service-card-full__link {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-accent);
    transition: all var(--transition-fast);
}

.service-card-full:hover .service-card-full__link {
    color: var(--color-accent-dark);
    letter-spacing: 0.5px;
}

/* =============================================
   FOOTER TITLE (About page compatibility)
   ============================================= */
.footer__title {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

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

/* =============================================
   SERVICE PAGE - OVERVIEW SECTION
   ============================================= */
.overview {
    background: var(--color-white);
}

.overview__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .overview__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.overview__content {
    padding-right: var(--spacing-md);
}

.overview__text {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.8;
}

.overview__text:last-of-type {
    margin-bottom: var(--spacing-md);
}

.overview__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
    font-size: var(--fs-small);
}

.overview__links span {
    color: var(--color-text-light);
}

.overview__links a {
    color: var(--color-accent);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.overview__links a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

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

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

/* =============================================
   SERVICE PAGE - LOFT TYPES SECTION
   ============================================= */
.loft-types {
    background: var(--color-light);
}

.loft-types__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 576px) {
    .loft-types__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .loft-types__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.type-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.type-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.type-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.type-card__text {
    font-size: var(--fs-small);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* =============================================
   SERVICE PAGE - PROCESS TIMELINE
   ============================================= */
.process {
    background: var(--color-white);
}

.process__timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process__timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
}

.process__step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    position: relative;
    padding-left: var(--spacing-sm);
}

@media (min-width: 768px) {
    .process__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        min-width: 150px;
        max-width: 180px;
        padding-left: 0;
    }
}

.process__number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.process__content {
    flex: 1;
}

.process__title {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.process__text {
    font-size: var(--fs-small);
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Timeline connector line */
@media (min-width: 768px) {
    .process__step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 25px;
        left: calc(50% + 30px);
        width: calc(100% - 60px);
        height: 2px;
        background: var(--color-accent);
        opacity: 0.3;
    }
}

/* Desktop: 5 items in a single row */
@media (min-width: 1024px) {
    .process__timeline {
        max-width: 100%;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .process__step {
        max-width: none;
        flex: 1;
        padding: 0 var(--spacing-xs);
    }

    /* Adjust connector line for wider spacing */
    .process__step:not(:last-child)::after {
        left: 50%;
        width: 100%;
    }
}

/* =============================================
   SERVICE PAGE - GALLERY SECTION
   ============================================= */
.gallery {
    padding: 80px 0 60px;
    background: var(--color-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery__item {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery__item:hover .gallery__caption {
    transform: translateY(0);
}

.gallery__location {
    display: block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery__type {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =============================================
   SERVICE PAGE - FAQ ACCORDION
   ============================================= */
.faq {
    background: var(--color-white);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq__item {
    background: var(--color-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-grey);
    transition: all var(--transition-fast);
}

.faq__item:hover {
    border-color: var(--color-accent);
}

.faq__item.active {
    border-color: var(--color-accent);
}

.faq__question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--color-accent-dark);
}

.faq__question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--color-accent);
    transition: transform var(--transition-fast);
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-text);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-primary);
        padding: 100px var(--spacing-md);
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav__toggle {
        display: flex;
        z-index: 10;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 576px) {
    .hero__buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
    }

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

    .about__content {
        padding-right: 0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =============================================
   Dropdown Menu Styles
   ============================================= */
.nav__dropdown {
    position: relative;
}

.dropdown__menu {
    display: none;
    position: absolute;
    background-color: #1a2332;
    padding: var(--spacing-sm) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    top: 100%;
    left: 0;
    min-width: 250px;
    z-index: 1000;
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.dropdown__menu li {
    list-style: none;
    /* Ensure no bullets */
}

.dropdown__menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
    /* Prevent wrapping */
    font-size: 0.95rem;
    /* Slightly smaller than main nav */
}

.dropdown__menu li a:hover {
    background-color: #c9a227;
    color: #1a2332;
}

/* Show dropdown on hover (Desktop) or when open class is present */
.nav__dropdown:hover .dropdown__menu,
.nav__dropdown.open .dropdown__menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dropdown__menu {
        position: static;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        /* Slight contrast on mobile */
        width: 100%;
        min-width: unset;
        transform: none;
        padding-left: 1rem;
    }

    .dropdown__menu li a {
        padding: 0.5rem 1rem;
    }
}

/* Dropdown Arrow Indicator */
.nav__dropdown>a::after {
    content: "\25BE";
    /* Down arrow */
    font-size: 0.7em;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav__dropdown:hover>a::after,
.nav__dropdown.open>a::after {
    transform: rotate(180deg);
}

/* =============================================
   FOOTER (Redesigned)
   ============================================= */
.footer {
    background-color: #1a2332;
    color: #fff;
    padding: var(--spacing-xl) 0;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.footer__brand {
    flex: 1 1 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo {
    width: 120px;
    margin-bottom: var(--spacing-sm);
}

.footer__logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    /* Increased from var(--spacing-sm) */
}

.footer__tagline {
    text-align: center;
}

.footer__tagline p {
    color: #c9a227;
    margin: 0 0 0.2rem 0;
    font-weight: 500;
    line-height: 1.2;
}

.footer__links {
    flex: 3 1 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.footer__services {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__services ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__services li {
    margin-bottom: 0.5rem;
}

.footer__services a,
.footer__col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Prevent wrapping */
}

.footer__services a:hover,
.footer__col ul li a:hover {
    color: #c9a227;
}

.footer__col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__col ul li {
    margin-bottom: 0.5rem;
    color: #a0aec0;
    /* For non-link text */
}

.footer__col ul li a {
    color: #fff;
}

.footer__bottom {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .footer__grid {
        flex-direction: column;
        align-items: center;
    }

    .footer__services {
        flex-direction: column;
        align-items: center;
    }

    .footer__col {
        margin-bottom: var(--spacing-md);
        text-align: center;
    }
}

/* =============================================
   NAVIGATION AIDS (Breadcrumbs & Section Nav)
   ============================================= */
/* Breadcrumbs */
.breadcrumbs {
    margin: 1.5rem auto;
    text-align: center;
    font-size: 0.95rem;
    color: #a0aec0;
}

.breadcrumbs a {
    color: #c9a227;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Section Nav Base */
.section-nav {
    background: #1a2332;
    color: #fff;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 80px;
    z-index: 99;
    border-bottom: 2px solid #c9a227;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    /* Safety for small screens */
}

/* Fade-In Active */
.section-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-nav a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.section-nav a.active,
.section-nav a:hover {
    color: #c9a227;
}

/* Active State Refinement (Gold Underline) */
.section-nav a.active {
    border-bottom: 2px solid #c9a227;
    padding-bottom: 2px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .section-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Secondary Button (Outline for Light Bg) */
.btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-medium);
    text-transform: uppercase;
    font-size: var(--fs-small);
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* =============================================
   TESTIMONIALS SLIDER
   ============================================= */
.testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonials__track {
    position: relative;
    height: 100%;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    /* Allows height to expand naturally if needed */
}

.testimonial-card__text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-card__author {
    margin-top: auto;
}

.testimonial-card__name {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-card__location {
    display: block;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-grey-light, #ccc);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonials__dot.active {
    background: var(--color-accent);
}

/* =============================================
   FOOTER ADJUSTMENTS
   ============================================= */
.footer {
    padding-top: 3rem;
    /* Reduced from default section padding */
}

/* Ensure footer columns align well */
.footer__links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__col {
    flex: 1;
    min-width: 200px;
}

.footer__services {
    display: flex;
    gap: 2rem;
}

/* =============================================
   MOBILE RESPONSIVENESS
   ============================================= */
@media (max-width: 768px) {

    /* Process Timeline */
    .process__steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process__steps::before {
        display: none;
        /* Hide connector line */
    }

    .process__step {
        margin-bottom: 1rem;
    }

    /* Footer adjustments for mobile */
    .footer__links {
        flex-direction: column;
    }

    .footer__services {
        flex-direction: column;
        gap: 0;
    }

    /* FAQ Clickable Area */
    .faq__question {
        width: 100%;
        text-align: left;
        cursor: pointer;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        border-bottom: 1px solid var(--color-border, #eee);
        font-weight: 600;
        font-size: 1.1rem;
    }
}

/* =============================================
   QUICK QUOTE MODAL (Fix)
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal__content {
    background: var(--color-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 480px;
    z-index: 1001;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal.active .modal__content {
    transform: scale(1);
}

@media (max-width: 480px) {
    .modal__content {
        padding: 1.25rem 1rem;
        width: 100%;
        max-height: 85vh;
    }
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    /* Slightly smaller */
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.modal__close:hover {
    color: var(--color-accent);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.quote-form label {
    font-weight: 600;
    font-size: 0.85rem;
    /* Slightly smaller text */
    color: var(--color-primary);
    margin-bottom: -0.4rem;
    /* Tighter label spacing */
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 0.6rem 0.8rem;
    /* Reduced vertical padding */
    border: 1px solid var(--color-grey);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    /* Slightly smaller text */
}

.quote-form textarea {
    height: 50px;
}

.modal__phone-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    width: 100%;
}

.modal__phone-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.modal__phone {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: var(--font-secondary);
}

.modal__phone:hover {
    opacity: 0.8;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Sticky CTA Fix */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.sticky-cta__text {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1.5rem;
        right: 50%;
        transform: translate(50%, 100px);
        /* Start hidden below */
        white-space: nowrap;
        padding: 0.6rem 1.2rem;
    }

    .sticky-cta.visible {
        transform: translate(50%, 0);
        /* Center horizontally on mobile */
    }

    .sticky-cta:hover {
        transform: translate(50%, -5px);
    }
}