/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum: #6B3A7D;
    --plum-dark: #4E2A5C;
    --plum-light: #8B5A9E;
    --plum-pale: #F3E8F7;
    --plum-mist: #FAF5FD;
    --amber: #F0C060;
    --amber-dark: #D4A030;
    --amber-light: #FDF0D0;
    --amber-pale: #FFF8EC;
    --text: #1E1E2E;
    --text-muted: #5A5A72;
    --text-light: #8888A0;
    --white: #FFFFFF;
    --bg: #FEFCFF;
    --bg-warm: #FFFAF5;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(107, 58, 125, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 58, 125, 0.10);
    --shadow-lg: 0 16px 50px rgba(107, 58, 125, 0.14);
    --shadow-card: 0 4px 20px rgba(107, 58, 125, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(107, 58, 125, 0.07);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(254, 252, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--plum);
    font-weight: 400;
}

.nav-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.nav-brand-text {
    display: none;
}

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

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--plum) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--plum-dark) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--plum);
}

.nav-toggle-icon {
    width: 24px;
    height: 24px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--bg) 0%, var(--plum-mist) 50%, var(--amber-pale) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 58, 125, 0.07) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.hero-gradient-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 192, 96, 0.10) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(107, 58, 125, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.hero-container {
    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);
    border: 1px solid rgba(107, 58, 125, 0.12);
    color: var(--plum);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.hero-title span {
    color: var(--plum);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 58, 125, 0.28);
}

.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 58, 125, 0.34);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum);
    border: 1.5px solid rgba(107, 58, 125, 0.18);
}

.btn-secondary:hover {
    border-color: var(--plum);
    background: var(--plum-pale);
    transform: translateY(-2px);
}

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

/* ===== FLOATING CARDS ===== */
.hero-cards {
    position: relative;
    height: 560px;
}

.float-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-card:hover {
    transform: scale(1.03) !important;
}

.float-card-1 {
    top: 0;
    right: 20px;
    width: 180px;
    z-index: 2;
    animation: floatA 6s ease-in-out infinite;
}

.float-card-1 .float-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.float-card-2 {
    top: 120px;
    left: 0;
    width: 200px;
    z-index: 3;
    background: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    animation: floatB 7s ease-in-out infinite;
}

.float-card-icon {
    width: 52px;
    height: 52px;
    color: var(--plum);
}

.float-card-icon svg {
    width: 100%;
    height: 100%;
}

.float-card-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.float-card-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--plum);
    line-height: 1;
}

.float-card-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.float-card-3 {
    bottom: 140px;
    right: 0;
    width: 190px;
    z-index: 2;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    animation: floatC 5.5s ease-in-out infinite;
}

.float-card-3 .float-card-icon {
    color: var(--amber);
}

.float-card-3 .float-card-number {
    color: var(--white);
}

.float-card-3 .float-card-label {
    color: rgba(255, 255, 255, 0.75);
}

.float-card-4 {
    bottom: 0;
    left: 30px;
    width: 170px;
    z-index: 1;
    animation: floatA 6.5s ease-in-out infinite reverse;
}

.float-card-4 .float-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

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

@keyframes floatB {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--plum-pale);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

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

.about-card {
    background: var(--bg);
    border: 1px solid rgba(107, 58, 125, 0.07);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(107, 58, 125, 0.14);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
    background: linear-gradient(180deg, var(--bg) 0%, var(--plum-mist) 100%);
}

.products-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(240, 192, 96, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

.products .container {
    position: relative;
    z-index: 1;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(107, 58, 125, 0.05);
}

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

.product-card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-body {
    padding: 26px 28px 30px;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SHOP CTA ===== */
.shop-cta {
    background: var(--white);
    padding: 100px 0;
}

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

.shop-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 18px;
}

.shop-cta-text {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 30px;
}

.shop-cta-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shop-cta-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.shop-cta-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.shop-cta-visual {
    position: relative;
}

.shop-cta-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

.shop-cta-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(transparent, rgba(30, 30, 46, 0.7));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== VISIT ===== */
.visit {
    background: var(--plum-mist);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: stretch;
}

.visit-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: var(--shadow-card);
}

.visit-info-item {
    display: flex;
    gap: 18px;
}

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

.visit-info-icon svg {
    width: 24px;
    height: 24px;
}

.visit-info-item h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--plum);
    margin-bottom: 4px;
}

.visit-info-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visit-info-item a {
    color: var(--plum);
    font-weight: 600;
    transition: var(--transition);
}

.visit-info-item a:hover {
    color: var(--plum-dark);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    box-shadow: var(--shadow-card);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

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

.contact-form-wrapper {
    background: var(--bg);
    border: 1px solid rgba(107, 58, 125, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(107, 58, 125, 0.14);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107, 58, 125, 0.1);
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 40px 20px;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon svg {
    width: 28px;
    height: 28px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
}

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

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card,
.contact-hours-card {
    background: var(--bg);
    border: 1px solid rgba(107, 58, 125, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-info-card h3,
.contact-hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-info-card > p,
.contact-hours-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--plum);
    padding: 10px 0;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--plum-dark);
}

.contact-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 4px;
}

.contact-address svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(107, 58, 125, 0.07);
    font-size: 0.9rem;
}

.hours-day {
    font-weight: 600;
    color: var(--text);
}

.hours-time {
    color: var(--text-muted);
}

.hours-note {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
}

.hours-note a {
    color: var(--plum);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 16px;
}

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

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

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--amber);
}

/* ===== 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 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-cards {
        height: 400px;
        max-width: 480px;
    }

    .shop-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shop-cta-visual {
        order: -1;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(254, 252, 255, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(107, 58, 125, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

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

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-brand-text {
        display: block;
    }

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

    .hero-cards {
        height: 320px;
        margin: 0 auto;
    }

    .float-card-1 { width: 130px; right: 0; }
    .float-card-1 .float-card-img img { height: 170px; }
    .float-card-2 { width: 160px; left: 0; }
    .float-card-3 { width: 160px; right: 0; }
    .float-card-4 { width: 140px; left: 10px; }
    .float-card-4 .float-card-img img { height: 120px; }

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

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

    .section {
        padding: 72px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .hero-cards {
        height: 280px;
    }

    .float-card-1 { width: 110px; }
    .float-card-1 .float-card-img img { height: 140px; }
    .float-card-2 { width: 140px; }
    .float-card-3 { width: 140px; }
    .float-card-4 { width: 120px; }
    .float-card-4 .float-card-img img { height: 100px; }
}
