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

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

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a3a2a;
    background-color: #faf8f4;
    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;
}

/* ── Utility ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Labels ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a5632;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #a9cca7;
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #0b2716;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #3d5a4a;
    max-width: 600px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #1a5632;
    color: #f5f0e8;
    padding: 14px 28px;
    border: 2px solid #1a5632;
}

.btn-primary:hover {
    background: #154729;
    border-color: #154729;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 86, 50, 0.25);
}

.btn-outline {
    background: transparent;
    color: #1a5632;
    padding: 14px 28px;
    border: 2px solid #1a5632;
}

.btn-outline:hover {
    background: #1a5632;
    color: #f5f0e8;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #1a5632;
    padding: 14px 28px;
    border: 2px solid rgba(26, 86, 50, 0.4);
}

.btn-outline-light:hover {
    background: rgba(26, 86, 50, 0.08);
    border-color: #1a5632;
    transform: translateY(-2px);
}

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

.btn-white {
    background: #f5f0e8;
    color: #1a5632;
    border: 2px solid #f5f0e8;
}

.btn-white:hover {
    background: #ece4d4;
    border-color: #ece4d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

/* ── Navigation ── */
nav.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 86, 50, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

nav:not(.nav-scrolled) {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0b2716;
    z-index: 1001;
}

.nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

nav:not(.nav-scrolled) .nav-logo {
    color: #f5f0e8;
}

nav:not(.nav-scrolled) .nav-logo-text {
    color: #f5f0e8;
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a3a2a;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.nav-link:hover {
    background: rgba(26, 86, 50, 0.08);
    color: #1a5632;
}

nav:not(.nav-scrolled) .nav-link {
    color: rgba(245, 240, 232, 0.85);
}

nav:not(.nav-scrolled) .nav-link:hover {
    color: #f5f0e8;
    background: rgba(245, 240, 232, 0.12);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    margin-left: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f5f0e8;
    background: #1a5632;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: #154729;
    transform: translateY(-1px);
}

nav:not(.nav-scrolled) .nav-cta {
    background: rgba(245, 240, 232, 0.18);
    color: #f5f0e8;
    border: 1px solid rgba(245, 240, 232, 0.3);
}

nav:not(.nav-scrolled) .nav-cta:hover {
    background: rgba(245, 240, 232, 0.28);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a3a2a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav:not(.nav-scrolled) .nav-toggle span {
    background: #f5f0e8;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b2716;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.mobile-menu-link:hover {
    background: rgba(26, 86, 50, 0.08);
    color: #1a5632;
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #f5f0e8;
    background: #1a5632;
    border-radius: 50px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: 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;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(6, 26, 14, 0.82) 0%,
        rgba(26, 86, 50, 0.72) 50%,
        rgba(11, 39, 22, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(169, 204, 167, 0.18);
    border: 1px solid rgba(169, 204, 167, 0.35);
    border-radius: 50px;
    color: #a9cca7;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #f5f0e8;
    margin-bottom: 24px;
}

.hero-title-accent {
    color: #a9cca7;
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.82);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.75);
}

.hero-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(169, 204, 167, 0.35);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(245, 240, 232, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ── Services ── */
.services {
    padding: 100px 0;
    background: #faf8f4;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: #f5f0e8;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 86, 50, 0.1);
    border-color: rgba(169, 204, 167, 0.4);
    background: #fff;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 86, 50, 0.08);
    border-radius: 14px;
    color: #1a5632;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: #1a5632;
    color: #f5f0e8;
    transform: scale(1.05);
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #3d5a4a;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: #eaf3ec;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(26, 86, 50, 0.12);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 86, 50, 0.15);
    border: 4px solid #eaf3ec;
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #1a5632;
    color: #f5f0e8;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(26, 86, 50, 0.25);
}

.about-exp-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.about-exp-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    opacity: 0.85;
}

.about-content {
    padding: 8px 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d5a4a;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

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

.about-value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 86, 50, 0.08);
    border-radius: 10px;
}

.about-value strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.875rem;
    color: #5a7a6a;
    line-height: 1.5;
}

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

/* ── Why Us ── */
.why-us {
    padding: 100px 0;
    background: #faf8f4;
}

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

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-item-number {
    flex-shrink: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #a9cca7;
    line-height: 1;
    padding-top: 4px;
}

.why-item-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 6px;
}

.why-item-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #5a7a6a;
}

.why-us-visual {
    position: relative;
}

.why-visual-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(26, 86, 50, 0.12);
}

.why-visual-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.why-stat-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #1a5632;
    color: #f5f0e8;
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(26, 86, 50, 0.25);
}

.why-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.why-stat-label {
    font-size: 0.8125rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* ── Process ── */
.process {
    padding: 100px 0;
    background: #eaf3ec;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.process-step-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a5632;
    color: #f5f0e8;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(26, 86, 50, 0.2);
}

.process-step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a9cca7;
    margin-bottom: 8px;
}

.process-step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #5a7a6a;
}

.process-step-line {
    flex: 0 0 48px;
    height: 2px;
    background: linear-gradient(90deg, #a9cca7, #d3e5d7);
    border-radius: 2px;
    margin-top: 36px;
}

/* ── Testimonial ── */
.testimonial-section {
    padding: 80px 0;
    background: #f5f0e8;
}

.testimonial-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-mark {
    margin: 0 auto 24px;
    opacity: 0.6;
}

.testimonial-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: #1a3a2a;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a5632;
    border-radius: 50%;
    color: #f5f0e8;
}

.testimonial-author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #0b2716;
}

.testimonial-author-location {
    display: block;
    font-size: 0.8125rem;
    color: #5a7a6a;
}

/* ── CTA ── */
.cta-section {
    padding: 100px 0;
    background: #1a5632;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(169, 204, 167, 0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(169, 204, 167, 0.06);
    border-radius: 50%;
}

.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-content .section-label {
    color: #a9cca7;
}

.cta-content .section-label::before {
    background: rgba(169, 204, 167, 0.5);
}

.cta-title {
    color: #f5f0e8;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.75);
    max-width: 480px;
}

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

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: #faf8f4;
}

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

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3d5a4a;
    margin-bottom: 36px;
}

.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 {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 86, 50, 0.08);
    border-radius: 12px;
    color: #1a5632;
}

.contact-detail strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.875rem;
    color: #5a7a6a;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: #1a5632;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 86, 50, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
    width: 100%;
}

.contact-form-card {
    background: #f5f0e8;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(26, 86, 50, 0.06);
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: #5a7a6a;
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a3a2a;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #1a3a2a;
    background: #faf8f4;
    border: 1.5px solid rgba(26, 86, 50, 0.15);
    border-radius: 12px;
    outline: none;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a5632;
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0b8a8;
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    margin-bottom: 16px;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #0b2716;
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.9375rem;
    color: #5a7a6a;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: #0b2716;
    color: rgba(245, 240, 232, 0.7);
    padding: 64px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #f5f0e8;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a9cca7;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #f5f0e8;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #f5f0e8;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    max-width: 400px;
    text-align: right;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .about-grid,
    .why-us-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero-trust-divider {
        width: 40px;
        height: 1px;
    }

    .services {
        padding: 72px 0;
    }

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

    .about {
        padding: 72px 0;
    }

    .about-img-secondary {
        right: 0;
        bottom: -24px;
    }

    .about-experience-badge {
        right: 16px;
        top: -16px;
    }

    .why-us {
        padding: 72px 0;
    }

    .why-stat-card {
        left: 0;
        bottom: -16px;
    }

    .process {
        padding: 72px 0;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .process-step-line {
        width: 48px;
        height: 2px;
        margin: 0;
        transform: rotate(90deg);
    }

    .process-step {
        max-width: 100%;
    }

    .contact {
        padding: 72px 0;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

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

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

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

    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 28px 20px;
    }
}
