/* ========================================
   Hytorq Cleaning Service — Styles
   Warm terracotta + sand palette
   ======================================== */

:root {
    --color-terracotta: #C06C4B;
    --color-terracotta-dark: #A8553A;
    --color-terracotta-light: #D4896E;
    --color-sand: #F5EDE3;
    --color-sand-dark: #E8DDD0;
    --color-cream: #FDF8F3;
    --color-white: #FFFFFF;
    --color-text: #3D2B1F;
    --color-text-light: #6B5344;
    --color-text-muted: #9B8578;
    --color-border: #E8DDD0;
    --color-shadow: rgba(192, 108, 75, 0.1);
    --color-shadow-md: rgba(192, 108, 75, 0.15);

    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px var(--color-shadow), 0 1px 2px var(--color-shadow);
    --shadow-md: 0 4px 16px var(--color-shadow), 0 2px 4px var(--color-shadow);
    --shadow-lg: 0 12px 40px var(--color-shadow-md), 0 4px 12px var(--color-shadow);
    --shadow-xl: 0 20px 60px var(--color-shadow-md), 0 8px 20px var(--color-shadow);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-max: 1200px;
    --header-height: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
}

.btn:focus-visible {
    outline: 3px solid var(--color-terracotta);
    outline-offset: 2px;
}

.btn--primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--terracotta {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn--white {
    background: var(--color-white);
    color: var(--color-terracotta);
    box-shadow: var(--shadow-md);
}

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

.btn--outline {
    background: transparent;
    color: var(--color-terracotta);
    border: 2px solid var(--color-terracotta);
}

.btn--outline:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--md {
    padding: 12px 28px;
    font-size: 15px;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

.btn--wide {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Section Components
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(192, 108, 75, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--color-sand);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-title-accent {
    color: var(--color-terracotta);
}

.section-title-accent-light {
    color: var(--color-sand);
}

.section-title--light {
    color: var(--color-white);
}

.section-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-description {
    margin: 0 auto;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 243, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}

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

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text);
    flex-shrink: 0;
}

.logo--light .logo__text {
    color: var(--color-white);
}

.logo__text {
    color: var(--color-text);
}

/* Navigation */
.nav__menu {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav__menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav__menu a:hover,
.nav__menu a:focus {
    color: var(--color-terracotta);
}

.nav__menu a:hover::after,
.nav__menu a:focus::after {
    width: 100%;
}

/* Nav Toggle */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header CTA */
.header__cta {
    display: none;
}

/* Mobile Nav */
@media (max-width: 767px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav__menu li:last-child {
        border-bottom: none;
    }

    .nav__menu a {
        display: block;
        padding: 16px 0;
        font-size: 17px;
    }

    .nav__menu a::after {
        display: none;
    }

    .header__cta {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        display: flex;
    }

    .header__cta {
        display: inline-flex;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 80px;
    background: var(--color-cream);
    overflow: hidden;
}

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

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-terracotta);
    background: rgba(192, 108, 75, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__headline {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
}

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

.hero__description {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
}

.hero__trust-item svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
    min-height: 400px;
}

.hero__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 6/7;
}

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

.hero__image-accent {
    position: absolute;
    bottom: -24px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
    aspect-ratio: 4/3;
    width: 55%;
}

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

.hero__stats-card {
    position: absolute;
    top: 24px;
    right: -20px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hero__stats-card-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.hero__stats-card-label {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 64px);
        padding-bottom: 120px;
    }

    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .hero__image-accent {
        left: -60px;
        bottom: -40px;
    }

    .hero__stats-card {
        right: -40px;
        top: 40px;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 80px 0;
    background: var(--color-sand);
}

.services .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.services .section-description {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-terracotta-light);
}

.service-card__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 108, 75, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--color-terracotta);
}

.service-card:hover .service-card__icon-wrap svg {
    stroke: var(--color-white) !important;
}

.service-card__icon-wrap--terracotta {
    background: var(--color-terracotta);
}

.service-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.service-card__description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

@media (min-width: 1024px) {
    .services {
        padding: 120px 0;
    }

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

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 80px 0;
    background: var(--color-cream);
}

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

.about__image-stack {
    position: relative;
    min-height: 400px;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/8;
}

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

.about__image-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
    width: 55%;
    aspect-ratio: 4/3;
}

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

.about__experience-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about__experience-badge-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about__experience-badge-text {
    font-size: 12px;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.about__content {
    max-width: 520px;
}

.about__content .section-tag {
    margin-bottom: 16px;
}

.about__text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.about__value-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 108, 75, 0.1);
    border-radius: 50%;
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.about__value-icon svg {
    width: 14px;
    height: 14px;
}

.about__content .btn {
    margin-top: 8px;
}

@media (min-width: 768px) {
    .about {
        padding: 120px 0;
    }

    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    padding: 80px 0;
    background: var(--color-terracotta);
    overflow: hidden;
}

.why-us__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.why-us__content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.why-us__content .section-title {
    margin-bottom: 16px;
}

.why-us__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 12px;
}

.why-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

@media (min-width: 1024px) {
    .why-us {
        padding: 120px 0;
    }

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

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 80px 0;
    background: var(--color-sand);
}

.testimonials .section-header {
    margin-bottom: 56px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-terracotta-light);
}

.testimonial-card--featured {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.testimonial-card--featured .testimonial-card__text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card--featured .testimonial-card__author-name {
    color: var(--color-white);
}

.testimonial-card--featured .testimonial-card__author-location {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card__quote-mark {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1;
    color: var(--color-terracotta);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    right: 24px;
}

.testimonial-card--featured .testimonial-card__quote-mark {
    color: var(--color-white);
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-card__author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 108, 75, 0.1);
    border-radius: 50%;
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.testimonial-card__author-avatar svg {
    width: 20px;
    height: 20px;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
}

.testimonial-card__author-location {
    font-size: 13px;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .testimonials {
        padding: 120px 0;
    }

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

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 80px 0;
    background: var(--color-cream);
}

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

.cta__headline {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 480px;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 768px) {
    .cta {
        padding: 100px 0;
    }

    .cta__inner {
        grid-template-columns: 1fr auto;
        gap: 64px;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 80px 0;
    background: var(--color-sand);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact__info .section-tag {
    margin-bottom: 16px;
}

.contact__description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 108, 75, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.contact__detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__detail-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact__detail-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.contact__detail-link {
    color: var(--color-terracotta);
    transition: color var(--transition-fast);
}

.contact__detail-link:hover {
    color: var(--color-terracotta-dark);
    text-decoration: underline;
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__map-placeholder {
    background: var(--color-white);
    padding: 40px;
    text-align: center;
    border-radius: var(--radius-lg);
}

.contact__map-placeholder svg {
    margin: 0 auto 16px;
}

.contact__map-placeholder p {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact__map-link {
    margin-top: 0;
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form-header {
    margin-bottom: 28px;
}

.contact__form-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-cream);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(192, 108, 75, 0.1);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B5344' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.contact__success {
    text-align: center;
    padding: 40px 20px;
}

.contact__success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 108, 75, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact__success-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact__success-text {
    font-size: 15px;
    color: var(--color-text-light);
}

.contact__form.hidden {
    display: none;
}

@media (min-width: 768px) {
    .contact {
        padding: 120px 0;
    }

    .contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__brand {
    max-width: 320px;
}

.footer__tagline {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer__contact-list {
    gap: 14px;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer__contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.footer__contact-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer__contact-link:hover {
    color: var(--color-terracotta-light);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer__bottom a:hover {
    color: var(--color-terracotta-light);
}

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

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
