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

:root {
    --forest: #2D5A3D;
    --forest-light: #3D7A52;
    --forest-dark: #1E3D29;
    --forest-muted: rgba(45, 90, 61, 0.08);
    --off-white: #F7F4EE;
    --off-white-pure: #FDFCFA;
    --cream: #EDE8DC;
    --sage: #B8C5B4;
    --sage-light: #D4DDD2;
    --warm-gray: #8A8578;
    --dark: #1A1F1C;
    --text: #2C3330;
    --text-light: #5C6360;
    --text-muted: #8A908C;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(26, 31, 28, 0.06), 0 1px 2px rgba(26, 31, 28, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 31, 28, 0.08), 0 2px 4px rgba(26, 31, 28, 0.04);
    --shadow-lg: 0 12px 40px rgba(26, 31, 28, 0.12), 0 4px 12px rgba(26, 31, 28, 0.06);
    --shadow-xl: 0 24px 60px rgba(26, 31, 28, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--off-white);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--forest);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 500;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 1rem;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

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

/* ─── HEADER ─────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 244, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: var(--transition);
}
#site-header.scrolled {
    background: rgba(247, 244, 238, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--forest);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    transition: var(--transition);
}
.logo:hover { color: var(--forest-dark); }
.logo-icon {
    flex-shrink: 0;
    color: var(--forest);
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
}

/* ─── NAV ────────────────────────────────────────── */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.935rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}
.main-nav a:hover {
    color: var(--forest);
    background: var(--forest-muted);
}
.nav-cta {
    background: var(--forest) !important;
    color: var(--white) !important;
    margin-left: 0.5rem;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--forest-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--forest);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-toggle:hover { background: var(--forest-muted); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 1.5rem 6rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #2D5A3D 0%,
        #3D7A52 25%,
        #4A9A65 45%,
        #6BB07E 60%,
        #8FC49A 75%,
        #B8D4B8 100%
    );
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}
.hero-badge svg { opacity: 0.9; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.text-gradient {
    background: linear-gradient(135deg, #E8F5E6 0%, #A8D5A2 50%, #F0F7ED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--white);
    color: var(--forest);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--off-white-pure);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ─── SECTION COMMON ─────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--forest);
    background: var(--forest-muted);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── SERVICES ───────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--off-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(45, 90, 61, 0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--forest-light));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-muted);
    border-radius: var(--radius-md);
    color: var(--forest);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--forest);
    color: var(--white);
    transform: scale(1.05);
}
.service-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    transition: var(--transition);
}
.service-link:hover { gap: 0.6rem; }
.service-link svg { transition: var(--transition); }

/* ─── ABOUT ──────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: var(--off-white-pure);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-float {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-experience-badge {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--forest);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.badge-label {
    font-size: 0.75rem;
    opacity: 0.85;
    line-height: 1.4;
    margin-top: 0.25rem;
}

.about-content .section-tag { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.5rem; text-align: left; }
.about-text {
    font-size: 1.025rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin: 1.75rem 0 2rem;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}
.about-list svg {
    color: var(--forest);
    flex-shrink: 0;
}

/* ─── WHY US ─────────────────────────────────────── */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(45, 90, 61, 0.06);
    transition: var(--transition);
    position: relative;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.why-card p {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(45, 90, 61, 0.06);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.testimonial-quote {
    color: var(--sage);
    margin-bottom: 1rem;
    opacity: 0.6;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    color: var(--forest);
    flex-shrink: 0;
}
.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}
.author-location {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ─── CONTACT ────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}
.contact-info .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
}
.contact-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-decoration: none;
}
.contact-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}
.contact-icon {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.contact-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.contact-value {
    display: block;
    font-size: 0.975rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.form-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--cream);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--off-white-pure);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #E8F5E6;
    border: 1px solid #C8E6C9;
    border-radius: var(--radius-sm);
    color: var(--forest-dark);
    font-size: 0.95rem;
    margin-top: 1rem;
}
.form-success svg { color: var(--forest); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────── */
#footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-brand .logo-icon { color: var(--sage-light); }
.footer-brand p {
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a,
.footer-contact a {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
    transform: translateX(3px);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-inner { height: 68px; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .main-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(247, 244, 238, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid rgba(45, 90, 61, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }
    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
    }
    .nav-cta { margin-left: 0 !important; text-align: center; }

    .hero { min-height: auto; padding: 7rem 1.5rem 5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-wave svg { height: 50px; }

    .services { padding: 4rem 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 4rem 0; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-images { max-width: 480px; }
    .about-img-float { bottom: -1.5rem; right: -0.5rem; }
    .about-experience-badge { right: 0.5rem; top: -1rem; }
    .about-list { grid-template-columns: 1fr; }
    .about-content .section-title { text-align: center; }
    .about-content .section-tag { display: block; text-align: center; }
    .about-content { text-align: center; }
    .about-content .btn { margin: 0 auto; }

    .why-us { padding: 4rem 0; }
    .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .testimonials { padding: 4rem 0; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

    .contact { padding: 4rem 0; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-tag { display: block; text-align: center; }
    .contact-desc { text-align: center; }
    .contact-form-wrap { max-width: 520px; margin: 0 auto; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-form-wrap { padding: 1.75rem; }
    .about-img-float { display: none; }
}
