/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #36454F;
    background: #FFFAF8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; }

/* ─── Color Tokens ─── */
:root {
    --charcoal: #36454F;
    --charcoal-light: #4A5B66;
    --coral: #FF7F6E;
    --coral-light: #FF9F93;
    --coral-pale: #FFF0EE;
    --cream: #FFFAF8;
    --sand: #F7F3F0;
    --white: #FFFFFF;
    --gray-100: #F8F6F5;
    --gray-200: #EDE8E5;
    --gray-400: #9E9590;
    --gray-600: #6B6360;
}

.text-coral { color: var(--coral); }
.text-white { color: var(--white); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: 0 4px 20px rgba(255, 127, 110, 0.35);
}
.btn-primary:hover {
    background: #FF6A55;
    border-color: #FF6A55;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 127, 110, 0.45);
}
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
    background: var(--coral-pale);
    border-color: var(--coral-pale);
    transform: translateY(-2px);
}
.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ─── Section Tags ─── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral-pale);
    color: var(--coral);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag.light-tag {
    background: rgba(255,127,110,0.2);
    color: var(--white);
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}
.section-title.light-title { color: var(--white); }
.section-desc, .section-desc.light-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
}
.section-desc.light-desc { color: rgba(255,255,255,0.8); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 127, 110, 0.1);
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(255, 250, 248, 0.95);
    box-shadow: 0 4px 30px rgba(54, 69, 79, 0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}
.logo-text span { color: var(--coral); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--charcoal-light);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--coral); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFFAF8 0%, #FFF5F2 50%, #FDF2EF 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,127,110,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,127,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--coral);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(255,127,110,0.12);
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1.12rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal-light);
}
.hero-image { position: relative; }
.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(54, 69, 79, 0.15);
}
.hero-img-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}
.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(54, 69, 79, 0.12);
    animation: float 4s ease-in-out infinite;
}
.hero-floating-card.card-1 {
    bottom: 40px;
    left: -30px;
    animation-delay: 0s;
}
.hero-floating-card.card-2 {
    top: 40px;
    right: -20px;
    animation-delay: 2s;
}
.floating-icon {
    width: 44px;
    height: 44px;
    background: var(--coral-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.coral-bg { background: var(--coral) !important; color: var(--white) !important; }
.hero-floating-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: var(--charcoal);
}
.hero-floating-card span {
    font-size: 0.78rem;
    color: var(--gray-400);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    color: var(--sand);
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── Services ─── */
.services {
    padding: 100px 0;
    background: var(--sand);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,127,110,0.06);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--coral-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(54, 69, 79, 0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--coral-pale);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--coral);
}
.service-link:hover { gap: 10px; }

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(54, 69, 79, 0.12);
    position: relative;
    z-index: 1;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(54, 69, 79, 0.15);
    z-index: 2;
    border: 5px solid var(--cream);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 12px 32px rgba(255,127,110,0.35);
}
.about-experience .exp-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.9;
}
.about-experience .exp-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-check {
    width: 24px;
    height: 24px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.about-feature span {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    font-weight: 500;
}
.about-content .btn { margin-top: 8px; }

/* ─── Why Us ─── */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2A363E 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,127,110,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 36px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,127,110,0.3);
    transform: translateY(-4px);
}
.why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,127,110,0.25);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral) 0%, #FF6A55 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 12px;
}
.cta-text {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--coral-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.contact-item a {
    color: var(--coral);
    font-weight: 500;
}
.contact-item a:hover { text-decoration: underline; }
.map-container { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(54,69,79,0.08); }

/* Form */
.form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 16px 48px rgba(54, 69, 79, 0.08);
    border: 1px solid rgba(255,127,110,0.06);
}
.form-title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.form-group label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--gray-100);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255,127,110,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
    width: 72px;
    height: 72px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h4 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.95rem;
    color: var(--gray-400);
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover { color: var(--coral); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.6;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--coral); }
.footer-contact li a { color: rgba(255,255,255,0.55); }
.footer-contact li a:hover { color: var(--coral); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ─── Animations ─── */
[data-aos] {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-aos].aos-delay-1 { transition-delay: 0.1s; }
[data-aos].aos-delay-2 { transition-delay: 0.2s; }
[data-aos].aos-delay-3 { transition-delay: 0.3s; }
[data-aos].aos-delay-4 { transition-delay: 0.4s; }
[data-aos].aos-delay-5 { transition-delay: 0.5s; }

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

@media (max-width: 768px) {
    .nav, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255,250,248,0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255,127,110,0.1);
        box-shadow: 0 12px 32px rgba(54,69,79,0.1);
    }
    .hero { padding: 100px 0 80px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { order: -1; }
    .hero-img-wrapper img { height: 360px; }
    .hero-floating-card.card-1 { left: 10px; bottom: 20px; }
    .hero-floating-card.card-2 { right: 10px; top: 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 420px; }
    .about-experience { right: 20px; top: -10px; }
    .about-features { grid-template-columns: 1fr; }
    .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; }
    .form-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .hero-floating-card { padding: 12px 14px; }
    .floating-icon { width: 36px; height: 36px; }
    .service-card { padding: 28px 24px; }
    .why-card { padding: 28px 24px; }
}
