/* ============================================
   Johnston's Discount Liquors — Stylesheet
   Palette: Emerald Green (#0f766e) + Cream (#fffbea)
   ============================================ */

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

:root {
    --emerald: #0f766e;
    --emerald-dark: #0a5c56;
    --emerald-light: #14b8a6;
    --cream: #fffbea;
    --cream-dark: #f5f0d6;
    --cream-dim: #e8e0c0;
    --dark: #0c2d2b;
    --dark-soft: #1a4a46;
    --text: #1a2e2d;
    --text-light: #4a6b69;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(15, 118, 110, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 118, 110, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 118, 110, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
}

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

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(15, 118, 110, 0.35);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn-secondary:hover {
    background: var(--emerald);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-cream {
    background: var(--cream);
    color: var(--emerald);
    box-shadow: 0 4px 20px rgba(255, 251, 234, 0.3);
}

.btn-cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 251, 234, 0.5);
}

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

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(15, 118, 110, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

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

.text-emerald {
    color: var(--emerald);
}

.text-cream {
    color: var(--cream);
}

.text-cream-dim {
    color: rgba(255, 251, 234, 0.7);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 234, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--emerald);
    border-radius: var(--radius-sm);
    position: relative;
    transform: rotate(-5deg);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: var(--cream);
    border-radius: 4px;
    transform: rotate(5deg);
}

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

.nav-links a {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.nav-links a:hover {
    background: rgba(15, 118, 110, 0.08);
    color: var(--emerald);
}

.nav-cta {
    background: var(--emerald) !important;
    color: var(--cream) !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--emerald-dark) !important;
    color: var(--cream) !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    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 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid rgba(15, 118, 110, 0.15);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

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

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

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--emerald);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(15, 118, 110, 0.12);
    border-radius: 4px;
    z-index: -1;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--emerald);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(15, 118, 110, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-primary {
    width: 320px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 240px;
    height: 320px;
    bottom: 20px;
    left: 0;
    z-index: 3;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 118, 110, 0.2) 100%);
    border-radius: var(--radius-lg);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--emerald);
    opacity: 0.08;
    top: -40px;
    left: 40px;
}

.hero-shape-2 {
    width: 120px;
    height: 120px;
    background: var(--emerald-light);
    opacity: 0.12;
    bottom: 80px;
    right: -20px;
}

.hero-card {
    position: absolute;
    bottom: 260px;
    right: -20px;
    z-index: 4;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

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

.hero-card-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.card-icon {
    font-size: 2rem;
}

.hero-card-content strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
}

.hero-card-content span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Geometric Accents */
.geo {
    position: absolute;
    z-index: 1;
}

.geo-1 {
    width: 300px;
    height: 300px;
    background: var(--emerald);
    opacity: 0.04;
    border-radius: var(--radius-lg);
    top: 10%;
    left: -80px;
    transform: rotate(15deg);
}

.geo-2 {
    width: 150px;
    height: 150px;
    background: var(--emerald-light);
    opacity: 0.06;
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
}

.geo-3 {
    width: 80px;
    height: 80px;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    top: 20%;
    right: 5%;
    transform: rotate(45deg);
}

/* --- Marquee --- */
.marquee {
    background: var(--emerald);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

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

.about-image-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 6/7;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    width: 160px;
    height: 160px;
    background: var(--emerald);
    opacity: 0.08;
    border-radius: var(--radius-lg);
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--emerald);
    color: var(--cream);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-md);
}

.badge-year {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.badge-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.about-content {
    padding-left: 20px;
}

.about-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(15, 118, 110, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.feature-item strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- Selection Section --- */
.selection {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

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

.selection-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.selection-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

.card-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

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

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

.card-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 118, 110, 0.6), transparent);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.card-content {
    padding: 24px;
    position: relative;
}

.card-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

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

/* --- Why Us Section --- */
.why-us {
    padding: 120px 0;
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 251, 234, 0.03);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-body {
    font-size: 1.05rem;
    color: rgba(255, 251, 234, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
}

.why-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 251, 234, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
}

.why-visual {
    position: relative;
}

.why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.why-img-1 {
    aspect-ratio: 4/3;
    grid-column: 1 / -1;
}

.why-img-2 {
    aspect-ratio: 4/3;
}

.why-img-3 {
    aspect-ratio: 4/3;
}

.why-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.floating-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--emerald);
}

/* --- CTA Band --- */
.cta-band {
    padding: 80px 0;
    background: var(--cream-dark);
    border-top: 1px solid rgba(15, 118, 110, 0.08);
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-band-text {
    flex: 1;
}

.cta-band-body {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0 80px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(15, 118, 110, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.contact-detail strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--emerald);
}

.contact-detail p {
    line-height: 1.6;
}

/* Map */
.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
}

.map-pin {
    animation: bounce 2s ease-in-out infinite;
}

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

/* Contact Form */
.contact-form-section {
    max-width: 720px;
    margin: 0 auto;
}

.form-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 36px;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

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

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(15, 118, 110, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

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

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

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 118, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emerald);
}

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

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

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--emerald);
    border-radius: var(--radius-sm);
    position: relative;
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: var(--cream);
    border-radius: 4px;
    transform: rotate(5deg);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 251, 234, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 0.88rem;
    color: rgba(255, 251, 234, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--cream);
}

.footer-contact li {
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
}

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

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--emerald);
    color: var(--cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--emerald-dark);
    transform: translateY(-4px);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-image-stack {
        height: 480px;
    }
    
    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-inner {
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        padding: 14px 18px;
    }
    
    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-stack {
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-img-primary {
        width: 220px;
        height: 280px;
    }
    
    .hero-img-secondary {
        width: 170px;
        height: 220px;
    }
    
    .hero-card {
        bottom: 200px;
        right: 0;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-badge {
        left: 10px;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-stack {
        height: 300px;
    }
    
    .hero-img-primary {
        width: 180px;
        height: 230px;
    }
    
    .hero-img-secondary {
        width: 140px;
        height: 180px;
    }
    
    .hero-card {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
