/* ============================================
   Whole Health Center — Custom Styles
   ============================================ */

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

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

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a85273;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #2d1f2b;
    margin-bottom: 1.25rem;
}

.section-title-accent {
    font-style: italic;
    color: #a85273;
}

.section-description {
    font-size: 1.05rem;
    color: #6b5766;
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #a85273;
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 82, 115, 0.25);
}

.btn-primary:hover {
    background: #8e3d5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 82, 115, 0.35);
}

.btn-ghost {
    background: transparent;
    color: #2d1f2b;
    border: 1px solid rgba(45, 31, 43, 0.2);
}

.btn-ghost:hover {
    border-color: #a85273;
    color: #a85273;
}

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

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(45, 31, 43, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #2d1f2b;
}

.nav-logo-icon {
    color: #a85273;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #6b5766;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #a85273;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #a85273;
}

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

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    background: #a85273;
    color: #fff !important;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: all 0.35s ease !important;
}

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

.nav-cta:hover {
    background: #8e3d5a !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #2d1f2b;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2d1f2b;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.mobile-menu-cta {
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
    background: #a85273;
    color: #fff;
    border-radius: 50px;
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: rgba(45, 31, 43, 0.15);
    margin: 1rem 0;
}

.mobile-menu-phone {
    font-size: 0.9rem;
    color: #6b5766;
    text-decoration: none;
    letter-spacing: 0.04em;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(235, 208, 220, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 243, 205, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a85273;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(168, 82, 115, 0.2);
    border-radius: 50px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a85273;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2d1f2b;
}

.hero-headline-accent {
    font-style: italic;
    color: #a85273;
}

.hero-description {
    font-size: 1.05rem;
    color: #6b5766;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-card {
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 31, 43, 0.08);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(45, 31, 43, 0.08);
    border-color: rgba(168, 82, 115, 0.15);
}

.hero-card--primary {
    grid-column: 1 / -1;
    background: #a85273;
    border-color: transparent;
    color: #fff;
}

.hero-card--primary .hero-card-label,
.hero-card--primary .hero-card-value {
    color: rgba(255, 255, 255, 0.85);
}

.hero-card--primary .hero-card-value {
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-card--amber {
    background: rgba(255, 243, 205, 0.6);
    border-color: rgba(245, 158, 11, 0.15);
}

.hero-card--plum {
    background: rgba(235, 208, 220, 0.3);
    border-color: rgba(168, 82, 115, 0.1);
}

.hero-card--stat {
    background: #2d1f2b;
    border-color: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(168, 82, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a85273;
    margin-bottom: 1rem;
}

.hero-card--stat .hero-card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #f59e0b;
}

.hero-card-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a85273;
    margin-bottom: 0.5rem;
}

.hero-card--stat .hero-card-label {
    color: rgba(255, 255, 255, 0.5);
}

.hero-card-value {
    font-size: 0.9rem;
    color: #6b5766;
    line-height: 1.6;
}

.hero-card--stat .hero-card-value {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.hero-card-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b5766;
    opacity: 0.5;
    animation: float 2s ease-in-out infinite;
}

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

/* ============================================
   Approach Section
   ============================================ */

.approach {
    padding: 8rem 0;
    background: #fff;
}

.approach-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-header {
    text-align: center;
    margin-bottom: 5rem;
}

.approach-header .section-description {
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.approach-step {
    padding: 2rem;
    border-left: 1px solid rgba(45, 31, 43, 0.1);
}

.approach-step:first-child {
    border-left: none;
}

.approach-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(168, 82, 115, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.approach-step-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d1f2b;
}

.approach-step-text {
    font-size: 0.9rem;
    color: #6b5766;
    line-height: 1.7;
}

.approach-image {
    border-radius: 16px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.approach-image:hover img {
    transform: scale(1.02);
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 8rem 0;
    background: #faf9f7;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-description {
    margin: 0 auto;
}

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

.service-card {
    padding: 2.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(45, 31, 43, 0.06);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(45, 31, 43, 0.06);
    border-color: rgba(168, 82, 115, 0.12);
}

.service-card-line {
    width: 32px;
    height: 2px;
    background: #a85273;
    margin-bottom: 1.5rem;
    transition: width 0.35s ease;
}

.service-card:hover .service-card-line {
    width: 48px;
}

.service-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #2d1f2b;
}

.service-card-text {
    font-size: 0.88rem;
    color: #6b5766;
    line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 8rem 0;
    background: #fff;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    position: sticky;
    top: 8rem;
}

.about-text {
    font-size: 1rem;
    color: #6b5766;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #2d1f2b;
}

.about-value svg {
    color: #a85273;
    flex-shrink: 0;
}

.about-image-group {
    position: relative;
    min-height: 600px;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(45, 31, 43, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 31, 43, 0.12);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-accent:nth-child(2) {
    width: 240px;
    height: 180px;
    bottom: -30px;
    right: -20px;
    z-index: 2;
}

.about-image-accent--offset {
    width: 200px;
    height: 150px;
    top: 40px;
    right: -40px;
    z-index: 1;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 8rem 0;
    background: #2d1f2b;
    color: #fff;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header .section-label {
    color: #d9a8bd;
}

.testimonials-header .section-title {
    color: #fff;
}

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

.testimonial-card {
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 82, 115, 0.3);
    transform: translateY(-4px);
}

.testimonial-card-quote {
    margin-bottom: 1.25rem;
}

.testimonial-card-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.testimonial-card-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
}

/* ============================================
   CTA / Contact Section
   ============================================ */

.cta {
    padding: 8rem 0;
    background: #faf9f7;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-content {
    padding-top: 1rem;
}

.cta-text {
    font-size: 1.05rem;
    color: #6b5766;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b5766;
    font-size: 0.92rem;
}

.cta-contact-item svg {
    color: #a85273;
    flex-shrink: 0;
}

.cta-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-contact-item a:hover {
    color: #a85273;
}

/* Form */
.cta-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(45, 31, 43, 0.06);
    box-shadow: 0 20px 60px rgba(45, 31, 43, 0.06);
}

.cta-form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2d1f2b;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b5766;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #2d1f2b;
    background: #faf9f7;
    border: 1px solid rgba(45, 31, 43, 0.1);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #a85273;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(168, 82, 115, 0.08);
}

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

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

.form-note {
    font-size: 0.78rem;
    color: #b8a4b2;
    text-align: center;
    margin-top: 1rem;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
}

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

.form-success svg {
    color: #a85273;
    margin-bottom: 1.5rem;
}

.form-success-title {
    font-size: 1.5rem;
    color: #2d1f2b;
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 0.9rem;
    color: #6b5766;
    line-height: 1.7;
}

/* ============================================
   Map Section
   ============================================ */

.map-section {
    border-top: 1px solid rgba(45, 31, 43, 0.06);
}

.map-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container iframe {
    border-radius: 0;
    display: block;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: #2d1f2b;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: #d9a8bd;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

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

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.footer-links-group a,
.footer-links-group span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 500px;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-cards {
        max-width: 500px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-step {
        border-left: none;
        border-top: 1px solid rgba(45, 31, 43, 0.1);
    }
    
    .approach-step:first-child {
        border-top: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        position: static;
    }
    
    .about-image-group {
        min-height: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-card--primary {
        grid-column: auto;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .approach {
        padding: 5rem 0;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-image img {
        height: 250px;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-image-group {
        min-height: 300px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        padding: 5rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta {
        padding: 5rem 0;
    }
    
    .cta-form-wrapper {
        padding: 1.75rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1.25rem 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-card {
        padding: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-form-wrapper {
        padding: 1.25rem;
    }
}

/* ============================================
   Animations
   ============================================ */

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

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