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

:root {
    --charcoal: #1A1D23;
    --charcoal-light: #2A2D35;
    --charcoal-mid: #3A3D45;
    --coral: #E85D4A;
    --coral-dark: #D14A38;
    --coral-light: #FF7A68;
    --cream: #FAF8F6;
    --cream-dark: #F0EDE8;
    --white: #FFFFFF;
    --text-primary: #1A1D23;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(26, 29, 35, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 29, 35, 0.12);
    --shadow-lg: 0 12px 40px rgba(26, 29, 35, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 29, 35, 0.06);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 246, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--charcoal);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--coral);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 8px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.mobile-menu__link:hover {
    color: var(--coral);
}

.mobile-menu__link--cta {
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--coral);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 100px;
    margin-top: 16px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero__bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

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

.hero__content {
    padding-right: 20px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(26, 29, 35, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    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-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 24px;
}

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

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(232, 93, 74, 0.35);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 93, 74, 0.45);
}

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

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

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Hero Image */
.hero__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 7/9;
    box-shadow: var(--shadow-lg);
}

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

.hero__image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.4), transparent);
    pointer-events: none;
}

/* Floating Stat Cards */
.hero__stats {
    position: absolute;
    right: -40px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    min-width: 220px;
}

.stat-card--1 {
    animation-delay: 0s;
}

.stat-card--2 {
    animation-delay: 1.3s;
}

.stat-card--3 {
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 56px;
}

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

.section-header__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-header__tag--light {
    color: var(--coral-light);
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-header__title-accent {
    color: var(--coral);
    font-style: italic;
}

.section-header__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
}

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

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: rgba(232, 93, 74, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(232, 93, 74, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.service-card__icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

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

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

.about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 6/7;
    box-shadow: var(--shadow-lg);
}

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

.about__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.2), transparent 50%);
    pointer-events: none;
}

.about__content {
    padding: 20px 0;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 24px;
}

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

.about__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

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

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about__value-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__value span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: var(--charcoal);
    overflow: hidden;
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.why-us__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
}

.why-us__title-accent {
    color: var(--coral);
    font-style: italic;
}

.why-us__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-us__item {
    display: flex;
    gap: 20px;
}

.why-us__item-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--coral);
    line-height: 1.2;
    flex-shrink: 0;
    width: 32px;
}

.why-us__item-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.why-us__item-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

.why-us__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 5/6.5;
    box-shadow: var(--shadow-lg);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid rgba(26, 29, 35, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

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

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

.testimonial-card__author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(232, 93, 74, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.testimonial-card__author-detail {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 12px;
}

.cta__title-accent {
    font-style: italic;
    opacity: 0.85;
}

.cta__desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

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

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 16px;
}

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

.contact__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

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

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

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact__detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.contact__detail-link {
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.contact__detail-link:hover {
    color: var(--coral);
}

/* Contact Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 29, 35, 0.06);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(26, 29, 35, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: all 0.2s ease;
    outline: none;
}

.form__input:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 93, 74, 0.1);
}

.form__input::placeholder {
    color: var(--text-light);
}

.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='%236B7280' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 16px;
}

.form__success.show {
    display: flex;
}

.form__success-icon {
    color: #22C55E;
    flex-shrink: 0;
}

.form__success p {
    font-size: 0.9rem;
    color: #166534;
    font-weight: 500;
}

/* ===== MAP ===== */
.map {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 29, 35, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map__card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.map__card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.map__card-address {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    padding: 64px 0 32px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

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

.footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--coral);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
}

.footer__phone:hover {
    color: var(--coral);
}

.footer__email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__email:hover {
    color: var(--coral);
}

.footer__address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__bg-pattern {
        width: 100%;
        clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
        opacity: 0.85;
    }
    
    .hero__content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__ctas {
        justify-content: center;
    }
    
    .hero__image {
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .hero__stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 32px;
    }
    
    .stat-card {
        min-width: auto;
        flex: 1;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__image-wrap {
        aspect-ratio: 16/10;
    }
    
    .why-us__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us__image {
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 4/3;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero__bg-pattern {
        clip-path: polygon(0 70%, 100% 55%, 100% 100%, 0% 100%);
    }
    
    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__values {
        grid-template-columns: 1fr;
    }
    
    .cta__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__actions {
        justify-content: center;
    }
    
    .contact__form-wrap {
        padding: 28px 20px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .map__card {
        margin: 0 16px;
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .btn--large {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}
