/* =============================================
   Howard Tax Plus — Custom Styles
   Clean minimalist · Emerald + Cream
   ============================================= */

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background-color: #FAF8F5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #065f46;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: #065f46;
}

.section-label--light {
    color: #d1fae5;
}

.section-label--light::before {
    background-color: #d1fae5;
}

/* --- Section Titles --- */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-title--light {
    color: #FAF8F5;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: #555;
    max-width: 560px;
    line-height: 1.8;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background-color: #065f46;
    color: #FAF8F5;
    border-color: #065f46;
}

.btn--primary:hover {
    background-color: #047857;
    border-color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25);
}

.btn--ghost {
    background-color: transparent;
    color: #065f46;
    border-color: #065f46;
}

.btn--ghost:hover {
    background-color: #065f46;
    color: #FAF8F5;
}

.btn--white {
    background-color: #FAF8F5;
    color: #065f46;
    border-color: #FAF8F5;
}

.btn--white:hover {
    background-color: #d1fae5;
    border-color: #d1fae5;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn--outline-light {
    background-color: transparent;
    color: #FAF8F5;
    border-color: rgba(250, 248, 245, 0.4);
}

.btn--outline-light:hover {
    border-color: #FAF8F5;
    background-color: rgba(250, 248, 245, 0.1);
}

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

/* =============================================
   Navigation
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    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: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #065f46;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #444;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #065f46;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #065f46;
}

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

.nav-link--cta {
    background-color: #065f46;
    color: #FAF8F5 !important;
    padding: 10px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    color: #065f46;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #065f46;
}

.mobile-menu-link--cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-top: 8px;
    padding: 14px 32px;
    background-color: #065f46;
    color: #FAF8F5;
    border-radius: 4px;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background-color: #FAF8F5;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #065f46 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #065f46;
    margin-bottom: 32px;
    padding: 8px 16px;
    background-color: rgba(6, 95, 70, 0.06);
    border-radius: 100px;
    border: 1px solid rgba(6, 95, 70, 0.12);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #065f46;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: #065f46;
}

.hero-subheadline {
    font-size: 1.05rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 480px;
}

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

/* Floating Stat Cards */
.hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 0;
}

.stat-card {
    border-radius: 12px;
    overflow: hidden;
}

.stat-card--1 {
    transform: translateY(0);
}

.stat-card--2 {
    transform: translateY(24px);
}

.stat-card--3 {
    transform: translateY(-16px);
}

.stat-card--4 {
    transform: translateY(8px);
}

.stat-card-inner {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card-inner:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.18);
}

.stat-card-icon {
    width: 36px;
    height: 36px;
    opacity: 0.9;
}

.stat-card-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.6);
}

.stat-card-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #FAF8F5;
    line-height: 1.4;
}

/* Hero decorative line */
.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(6, 95, 70, 0.08);
}

.hero-line-fill {
    height: 100%;
    width: 0;
    background-color: #065f46;
    transition: width 1s ease;
}

.hero-line-fill.animate {
    width: 100%;
}

/* =============================================
   Services Section
   ============================================= */
.services {
    padding: 120px 0;
    background-color: #FAF8F5;
}

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

.service-card {
    background-color: #fff;
    border: 1px solid rgba(6, 95, 70, 0.08);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #065f46, #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 95, 70, 0.08);
    border-color: rgba(6, 95, 70, 0.15);
}

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

.service-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(6, 95, 70, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: #065f46;
}

.service-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.75;
}

/* =============================================
   About Section
   ============================================= */
.about {
    padding: 120px 0;
    background-color: #FAF8F5;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(6, 95, 70, 0.15);
    border-radius: 12px;
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 400;
    color: #333;
}

.value-item svg {
    flex-shrink: 0;
    color: #065f46;
}

/* =============================================
   Why Us Section
   ============================================= */
.why-us {
    padding: 120px 0;
    background-color: #065f46;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content {
    max-width: 460px;
}

.why-us-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.75);
    line-height: 1.85;
}

.why-us-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-stat {
    padding: 28px 0;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.why-stat:first-child {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.why-stat-line {
    width: 32px;
    height: 1px;
    background-color: rgba(250, 248, 245, 0.3);
    margin-bottom: 12px;
}

.why-stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #FAF8F5;
    margin-bottom: 6px;
}

.why-stat-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.55);
    line-height: 1.6;
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials {
    padding: 120px 0;
    background-color: #FAF8F5;
}

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

.testimonial-card {
    background-color: #fff;
    border: 1px solid rgba(6, 95, 70, 0.08);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 95, 70, 0.08);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(6, 95, 70, 0.12);
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid rgba(6, 95, 70, 0.08);
}

.testimonial-author-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: #065f46;
    letter-spacing: 0.02em;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    padding: 100px 0;
    background-color: #065f46;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
}

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

.cta-content {
    max-width: 520px;
}

.cta-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.75);
    line-height: 1.85;
    margin-top: 16px;
}

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

/* =============================================
   Contact Section
   ============================================= */
.contact {
    padding: 120px 0;
    background-color: #FAF8F5;
}

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

.contact-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.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;
    border: 1px solid rgba(6, 95, 70, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

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

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
}

.contact-detail-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: #065f46;
    transition: color 0.3s ease;
}

.contact-detail-link:hover {
    color: #047857;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    border: 1px solid rgba(6, 95, 70, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
}

.form-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1a1a1a;
    background-color: #FAF8F5;
    border: 1px solid rgba(6, 95, 70, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    border-color: #065f46;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
}

.form-input::placeholder {
    color: #aaa;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23065f46' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%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 */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 16px;
}

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

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.form-success-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 300px;
}

/* =============================================
   Location Section
   ============================================= */
.location {
    padding: 100px 0 0;
    background-color: #FAF8F5;
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid rgba(6, 95, 70, 0.08);
}

.location-info {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-text {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin-top: 16px;
}

.location-map {
    min-height: 400px;
    background-color: #e5e5e5;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background-color: #065f46;
    padding: 80px 0 0;
    color: #FAF8F5;
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FAF8F5;
    margin-bottom: 16px;
}

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

.footer-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.75;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.5);
    margin-bottom: 20px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.7);
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #FAF8F5;
}

.footer-address {
    font-style: normal;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.8;
}

.footer-link {
    color: rgba(250, 248, 245, 0.7);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FAF8F5;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 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.8rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.45);
}

.footer-bottom-note {
    font-size: 0.78rem;
}

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

.fade-in.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; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-bg-pattern {
        width: 100%;
        clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
        opacity: 0.85;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subheadline {
        max-width: 100%;
    }

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

    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-image {
        height: 480px;
    }

    .about-content {
        max-width: 100%;
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .location-inner {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 48px 32px;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-bg-pattern {
        clip-path: polygon(0 70%, 100% 55%, 100% 100%, 0% 100%);
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card--1,
    .stat-card--2,
    .stat-card--3,
    .stat-card--4 {
        transform: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .about {
        padding: 80px 0;
    }

    .about-image {
        height: 360px;
    }

    .about-image-accent {
        display: none;
    }

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

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

    .testimonials {
        padding: 80px 0;
    }

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

    .cta-section {
        padding: 80px 0;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact {
        padding: 80px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

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

    .location {
        padding: 80px 0 0;
    }

    .location-inner {
        border-radius: 12px;
    }

    .footer {
        padding: 60px 0 0;
    }

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

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

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .section-header {
        margin-bottom: 48px;
    }
}
