/* ============================================
   SUSAN GREENBAUM — RAMSEY REAL ESTATE
   Warm & Friendly | Charcoal + Coral
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --charcoal: #2D2D2D;
    --charcoal-light: #3D3D3D;
    --charcoal-dark: #1A1A1A;
    --coral: #E07A5F;
    --coral-light: #F2A892;
    --coral-dark: #C4624A;
    --coral-pale: #FDF0ED;
    --cream: #FAFAF8;
    --white: #FFFFFF;
    --gray-50: #F9F9F8;
    --gray-100: #F3F3F1;
    --gray-200: #E8E8E4;
    --gray-300: #D1D1CC;
    --gray-400: #A0A09A;
    --gray-500: #6E6E68;
    --gray-600: #4A4A46;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.12);
    --shadow-xl: 0 16px 60px rgba(45, 45, 45, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--coral-pale);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.section-title em {
    font-style: italic;
    color: var(--coral);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.35);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224, 122, 95, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--gray-200);
}

.btn--ghost:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--coral);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    padding: 0;
}

.nav.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--charcoal);
    background: var(--gray-100);
}

.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    margin-left: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-lg);
}

.nav__link--cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(45, 45, 45, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.mobile-menu__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.active .mobile-menu__inner {
    transform: translateX(0);
}

.mobile-menu__link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--coral);
}

.mobile-menu__link--cta {
    color: var(--coral);
    border-bottom: none;
    margin-top: 12px;
    font-weight: 600;
}

.mobile-menu__contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.mobile-menu__contact a {
    color: var(--gray-600);
    transition: color var(--transition);
}

.mobile-menu__contact a:hover {
    color: var(--coral);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__title em {
    font-style: italic;
    color: var(--coral);
}

.hero__subtitle {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
}

.hero__trust-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 5/6;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: -1;
}

.hero__floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero__floating-card-icon {
    width: 44px;
    height: 44px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__floating-card-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.hero__floating-card-sub {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 2px;
}

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

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 0 110px;
    background: var(--charcoal);
    position: relative;
}

.services .section-header {
    margin-bottom: 56px;
}

.services .section-tag {
    background: rgba(224, 122, 95, 0.15);
}

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: var(--gray-400);
}

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

.service-card {
    background: var(--charcoal-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 122, 95, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-card__icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(224, 122, 95, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card__icon {
    display: flex;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-300);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 110px 0;
    background: var(--cream);
}

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

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 640px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about__experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about__content {
    max-width: 520px;
}

.about__content .section-tag {
    margin-bottom: 16px;
}

.about__content .section-title {
    margin-bottom: 24px;
    text-align: left;
}

.about__body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.about__value-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__value strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.about__value span {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 110px 0;
    background: var(--gray-50);
}

.testimonials .section-header {
    margin-bottom: 56px;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

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

.cta__content {
    flex: 1;
    max-width: 560px;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn--white:hover {
    background: var(--gray-50) !important;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 110px 0;
    background: var(--cream);
}

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

.contact__info .section-tag {
    margin-bottom: 16px;
}

.contact__info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 1.02rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact__detail-icon {
    width: 52px;
    height: 52px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--coral);
}

/* Contact Form */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact__form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--gray-50);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.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(224, 122, 95, 0.1);
}

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

/* Success Message */
.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.contact__success.active {
    display: flex;
}

.contact__success h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--charcoal);
}

.contact__success p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal-dark);
    padding: 64px 0 0;
    color: var(--gray-400);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer__address {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links strong,
.footer__contact strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.footer__links a,
.footer__contact a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--coral);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer__disclaimer {
    font-size: 0.75rem !important;
    color: var(--gray-500) !important;
    max-width: 500px;
    text-align: right;
    line-height: 1.5;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }
    
    .hero__floating-card {
        left: -10px;
        bottom: 24px;
    }
    
    .about__container {
        gap: 48px;
    }
    
    .about__experience-badge {
        right: -12px;
        bottom: -16px;
    }
    
    .cta__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__actions {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .services__grid,
    .testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero__image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .hero__floating-card {
        left: 16px;
        bottom: 16px;
    }
    
    .hero__trust {
        gap: 16px;
    }
    
    .hero__wave svg {
        height: 50px;
    }
    
    .services,
    .about,
    .testimonials,
    .contact {
        padding: 80px 0;
    }
    
    .services__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__image-wrap img {
        height: 420px;
    }
    
    .about__experience-badge {
        right: 16px;
        bottom: -16px;
    }
    
    .about__content {
        max-width: 100%;
    }
    
    .about__content .section-title {
        text-align: center;
    }
    
    .about__content .section-tag {
        display: block;
        text-align: center;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__info .section-title {
        text-align: center;
    }
    
    .contact__info .section-tag {
        display: block;
        text-align: center;
    }
    
    .contact__desc {
        text-align: center;
    }
    
    .contact__form-wrap {
        padding: 32px 24px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__disclaimer {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        justify-content: center;
    }
    
    .hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hero__trust-divider {
        display: none;
    }
    
    .cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta__actions .btn {
        justify-content: center;
    }
    
    .service-card {
        padding: 28px 24px;
    }
}
