/* ========================================
   HomoAmans — Warm & Friendly Design
   Palette: Plum + Amber
   Fonts: Nunito + Quicksand
======================================== */

/* ---- CSS Variables ---- */
:root {
    --plum-50: #faf5f7;
    --plum-100: #f3e8ed;
    --plum-200: #e8cdd8;
    --plum-300: #d4a3b8;
    --plum-400: #c07a96;
    --plum-500: #a85578;
    --plum-600: #933e60;
    --plum-700: #7a304e;
    --plum-800: #632840;
    --plum-900: #4e1f32;

    --amber-50: #fffbeb;
    --amber-100: #fff3cd;
    --amber-200: #ffeaa7;
    --amber-300: #ffd166;
    --amber-400: #f4a818;
    --amber-500: #e08e0a;
    --amber-600: #c47505;
    --amber-700: #a05c03;
    --amber-800: #7a4402;
    --amber-900: #542e01;

    --cream: #FFF8F0;
    --cream-dark: #FDF0E0;
    --white: #FFFFFF;
    --text-dark: #2D1F2E;
    --text-medium: #5A4558;
    --text-light: #8B7085;
    --text-muted: #B09AAF;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(126, 62, 96, 0.06);
    --shadow-md: 0 8px 30px rgba(126, 62, 96, 0.1);
    --shadow-lg: 0 20px 60px rgba(126, 62, 96, 0.15);
    --shadow-xl: 0 30px 80px rgba(126, 62, 96, 0.2);
    --shadow-amber: 0 8px 30px rgba(224, 142, 10, 0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* ---- Utility Classes ---- */
.text-gradient {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-400), var(--amber-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-amber {
    color: var(--amber-600);
}

.section-tag {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-500);
    background: var(--plum-100);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 560px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-500));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(147, 62, 96, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 62, 96, 0.45);
}

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

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
    color: var(--white);
    box-shadow: var(--shadow-amber);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(224, 142, 10, 0.4);
}

.btn-outline-amber {
    background: transparent;
    color: var(--amber-700);
    border: 2px solid var(--amber-300);
}

.btn-outline-amber:hover {
    background: var(--amber-50);
    border-color: var(--amber-500);
    transform: translateY(-2px);
}

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

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 120, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--plum-700);
}

.logo svg {
    color: var(--plum-500);
}

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

.nav-links a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-medium);
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.nav-links a:hover {
    color: var(--plum-600);
    background: var(--plum-50);
}

.btn-nav {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-500));
    color: var(--white) !important;
    box-shadow: 0 2px 12px rgba(147, 62, 96, 0.3);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(147, 62, 96, 0.4);
    background: linear-gradient(135deg, var(--plum-600), var(--plum-500)) !important;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--plum-600);
    border-radius: 2px;
    transition: var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 85%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 120, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 142, 10, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--plum-200);
    color: var(--plum-600);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    line-height: 1.8;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.main-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
}

.main-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--plum-700);
    box-shadow: var(--shadow-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-card .fc-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.floating-card .fc-text {
    display: flex;
    flex-direction: column;
}

.floating-card .fc-text strong {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.floating-card .fc-text span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.card-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    right: -40px;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: -10px;
    left: 10px;
    animation-delay: 2.6s;
}

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

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---- About Section ---- */
.section {
    padding: 100px 0;
}

.about {
    background: var(--cream-dark);
}

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

.img-stack {
    position: relative;
    height: 500px;
}

.img-primary {
    width: 75%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 6px solid var(--cream-dark);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 40%;
    background: linear-gradient(135deg, var(--plum-600), var(--plum-500));
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 30px rgba(147, 62, 96, 0.4);
}

.exp-number {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 36px;
}

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

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

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--plum-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
}

.feature-item strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ---- Products Section ---- */
.products {
    background: var(--cream);
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(168, 85, 120, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 31, 46, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-tag {
    background: var(--amber-400);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--plum-600);
    padding: 10px 0;
    border-bottom: 2px solid var(--plum-200);
    border-radius: 0;
    transition: var(--transition);
}

.btn-product:hover {
    color: var(--plum-700);
    border-color: var(--plum-500);
    gap: 10px;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 80px 0;
    background: var(--cream-dark);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600), var(--plum-500));
    border-radius: var(--radius-xl);
    padding: 70px 60px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(224, 142, 10, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 209, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Contact Section ---- */
.contact {
    background: var(--cream);
}

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

.contact-info .section-subtitle {
    margin: 0 0 36px 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 85, 120, 0.06);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--plum-200);
}

.info-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plum-bg { background: linear-gradient(135deg, var(--plum-500), var(--plum-600)); }
.amber-bg { background: linear-gradient(135deg, var(--amber-500), var(--amber-400)); }

.info-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-details strong {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.info-details span {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.info-arrow {
    color: var(--plum-300);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card:hover .info-arrow {
    color: var(--plum-500);
    transform: translateX(4px);
}

.hours-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(168, 85, 120, 0.06);
}

.hours-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
}

.hours-card strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.hours-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(168, 85, 120, 0.06);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--plum-100);
    border-radius: var(--radius-md);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--plum-50);
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(168, 85, 120, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-600);
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Map Section ---- */
.map-section {
    background: var(--cream-dark);
}

.map-section iframe {
    display: block;
    filter: saturate(0.8) contrast(1.05);
}

/* ---- Footer ---- */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--amber-300);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

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

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

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

    .hero-visual {
        min-height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .card-1 { left: 0; }
    .card-2 { right: 0; }

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

    .img-stack {
        max-width: 450px;
        margin: 0 auto;
    }

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

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

    .contact-form-wrapper {
        sticky: unset;
        top: unset;
    }

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        border-bottom: 1px solid var(--plum-100);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .floating-card {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .cta-card {
        padding: 50px 30px;
    }

    .form-card {
        padding: 28px;
    }

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

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

    .section {
        padding: 70px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .cta-actions {
        flex-direction: column;
    }

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