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

:root {
    --terracotta: #C2704E;
    --terracotta-dark: #A85A3A;
    --terracotta-light: #D4916F;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --cream: #FFF9F5;
    --white: #FFFFFF;
    --text: #3D322C;
    --text-light: #7A6B63;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 12px 48px rgba(44, 36, 32, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    color: var(--charcoal);
}

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

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

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

/* ===== Geometric Background Shapes ===== */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
    border-radius: 50%;
}

.geo-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta);
    top: -200px;
    right: -150px;
}

.geo-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--sand-dark);
    bottom: 20%;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.geo-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--terracotta-light);
    top: 40%;
    right: 5%;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

.geo-shape.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--terracotta);
    bottom: 10%;
    right: 15%;
    transform: rotate(45deg);
    border-radius: 4px;
}

.geo-shape.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--sand-dark);
    top: 60%;
    left: 8%;
    border-radius: 50%;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 112, 78, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 249, 245, 0.95);
    box-shadow: 0 2px 20px rgba(44, 36, 32, 0.08);
}

.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: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.nav-logo svg {
    color: var(--terracotta);
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--terracotta);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(194, 112, 78, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 36, 32, 0.82) 0%,
        rgba(44, 36, 32, 0.65) 50%,
        rgba(194, 112, 78, 0.4) 100%
    );
}

.hero-geo {
    position: absolute;
    z-index: 1;
}

.geo-hero-tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 300px 300px;
    border-color: transparent transparent var(--terracotta) transparent;
    opacity: 0.15;
    bottom: 0;
    right: 10%;
    transform: rotate(-15deg);
}

.geo-hero-circle {
    width: 400px;
    height: 400px;
    border: 3px solid var(--sand);
    border-radius: 50%;
    opacity: 0.08;
    top: 10%;
    right: -5%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194, 112, 78, 0.2);
    border: 1px solid rgba(194, 112, 78, 0.4);
    color: var(--sand);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    color: var(--terracotta-light);
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    max-width: 780px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-headline em {
    color: var(--terracotta-light);
    font-style: normal;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(245, 230, 211, 0.85);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 230, 211, 0.8);
    font-size: 0.9rem;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 50%;
    color: var(--sand);
    transition: var(--transition);
}

.hero-scroll a:hover {
    background: rgba(245, 230, 211, 0.1);
    border-color: rgba(245, 230, 211, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 112, 78, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--sand);
    border-color: rgba(245, 230, 211, 0.5);
}

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

.btn-light {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
}

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

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

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

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

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

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    background: rgba(194, 112, 78, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

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

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.section-desc-light {
    color: rgba(245, 230, 211, 0.8);
}

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

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

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

.services-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light), var(--sand), var(--terracotta-light), var(--terracotta));
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(194, 112, 78, 0.15);
}

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

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--sand-dark);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-accent {
    opacity: 0.3;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(194, 112, 78, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--terracotta);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== About ===== */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-img-float img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.badge-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
}

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

.about-content .section-title {
    margin-bottom: 20px;
}

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

.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--sand-dark);
    border-bottom: 1px solid var(--sand-dark);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.3;
}

.about-content .btn {
    margin-top: 8px;
}

/* ===== Why Us ===== */
.why-us {
    position: relative;
    padding: 100px 0;
    background: var(--charcoal);
    overflow: hidden;
}

.why-us-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--terracotta-light), var(--terracotta), var(--sand-dark), var(--terracotta), var(--terracotta-light));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(194, 112, 78, 0.3);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(194, 112, 78, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--terracotta);
    color: var(--white);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.65;
}

/* ===== CTA Banner ===== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--terracotta);
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -200px;
    left: -100px;
}

.cta-geo-2 {
    width: 300px;
    height: 300px;
    top: auto;
    bottom: -100px;
    left: auto;
    right: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 249, 245, 0.85);
    line-height: 1.7;
}

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

/* ===== Contact ===== */
.contact {
    position: relative;
    padding: 100px 0;
    background: var(--white);
}

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

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(194, 112, 78, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-detail a {
    color: var(--terracotta);
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-wrap {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--sand-dark);
}

.contact-form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    border-radius: var(--radius) var(--radius) 0 0;
}

.contact-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success .success-icon {
    width: 72px;
    height: 72px;
    background: rgba(194, 112, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--terracotta);
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .footer-logo svg {
    color: var(--terracotta-light);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.6);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(245, 230, 211, 0.4);
}

.footer-bottom a {
    color: rgba(245, 230, 211, 0.4);
    transition: var(--transition);
}

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

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-cta {
        justify-content: center;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-trust {
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-float {
        right: 10px;
        bottom: -30px;
    }

    .about-img-float img {
        width: 200px;
        height: 160px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-actions {
        justify-content: center;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .geo-hero-tri {
        border-width: 0 0 150px 150px;
    }

    .geo-hero-circle {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .contact-form-wrap {
        padding: 24px;
    }

    .about-img-badge {
        padding: 14px;
    }

    .badge-number {
        font-size: 1.4rem;
    }
}
