/* ============================================
   Greenport Drugs — Custom Stylesheet
   ============================================ */

/* CSS Custom Properties */
:root {
    --color-emerald-50: #ecfdf5;
    --color-emerald-100: #d1fae5;
    --color-emerald-200: #a7f3d0;
    --color-emerald-300: #6ee7b7;
    --color-emerald-400: #34d399;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    --color-emerald-700: #047857;
    --color-emerald-800: #065f46;
    --color-emerald-900: #064e3b;
    
    --color-cream-50: #fefdf8;
    --color-cream-100: #fef9ef;
    --color-cream-200: #fdf3e0;
    --color-cream-300: #f5e6c8;
    --color-cream-400: #e8d4a8;
    
    --color-sage-50: #f6f7f4;
    --color-sage-100: #eef0e8;
    --color-sage-200: #d8dbce;
    
    --color-text-dark: #1a2e23;
    --color-text-body: #2d4a38;
    --color-text-muted: #5a7d68;
    --color-text-light: #8fa898;
    
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(6, 95, 70, 0.06), 0 1px 2px rgba(6, 95, 70, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 95, 70, 0.08), 0 2px 6px rgba(6, 95, 70, 0.05);
    --shadow-lg: 0 12px 40px rgba(6, 95, 70, 0.12), 0 4px 12px rgba(6, 95, 70, 0.06);
    --shadow-xl: 0 24px 60px rgba(6, 95, 70, 0.15), 0 8px 20px rgba(6, 95, 70, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 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(--color-text-body);
    background-color: var(--color-cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-logo {
    color: var(--color-emerald-800);
}

.nav-logo-icon {
    color: var(--color-emerald-300);
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-logo-icon {
    color: var(--color-emerald-600);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav.scrolled .nav-link {
    color: var(--color-text-body);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav-link:hover {
    color: var(--color-emerald-700);
    background: var(--color-emerald-50);
}

.nav-link--cta {
    background: var(--color-emerald-500);
    color: var(--color-white) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--color-emerald-600) !important;
    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: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav.scrolled .nav-toggle span {
    background: var(--color-emerald-800);
}

.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: var(--color-emerald-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--color-white);
    padding: 8px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-link--cta {
    margin-top: 16px;
    background: var(--color-emerald-500);
    color: var(--color-white) !important;
    font-weight: 600;
    border-radius: var(--radius-md);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.82) 0%,
        rgba(6, 95, 70, 0.68) 50%,
        rgba(4, 120, 87, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 120px 24px 80px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: var(--color-emerald-100);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--color-emerald-200);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 560px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--color-emerald-300);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    animation: float 2.5s ease-in-out infinite;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-emerald-600);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn--primary:hover {
    background: var(--color-emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

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

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* ============================================
   Section Common
   ============================================ */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-emerald-100);
    color: var(--color-emerald-700);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-emerald-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

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

.section-title--lg {
    font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 600px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--color-cream-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-sage-100);
    transition: all var(--transition-base);
}

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

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-50);
    border-radius: var(--radius-md);
    color: var(--color-emerald-600);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.service-card:hover .service-card-icon {
    background: var(--color-emerald-100);
    color: var(--color-emerald-700);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

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

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

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

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

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

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

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

.about-stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-emerald-700);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.about-content {
    max-width: 520px;
}

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

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

.about-value {
    display: flex;
    gap: 16px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-50);
    border-radius: var(--radius-md);
    color: var(--color-emerald-600);
}

.about-value strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.about-value span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   Community / Hours Section
   ============================================ */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-emerald-800) 0%, var(--color-emerald-900) 100%);
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
}

@media (min-width: 900px) {
    .community-inner {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

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

.hours-table {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hours-time {
    font-weight: 600;
    color: var(--color-emerald-300);
}

.hours-row--closed .hours-time {
    color: var(--color-cream-300);
    opacity: 0.6;
}

/* Map Card */
.map-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 28px;
    background: var(--color-emerald-700);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
}

.map-card-body {
    padding: 28px;
}

.map-address {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.map-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-emerald-700);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.map-contact-item:hover {
    color: var(--color-emerald-500);
}

.map-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.map-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-directions-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--color-emerald-600);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.map-directions-btn:hover {
    background: var(--color-emerald-700);
    transform: translateY(-2px);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-emerald-600) 0%, var(--color-emerald-700) 100%);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .cta-inner {
        flex-direction: row;
        text-align: left;
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--color-cream-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
    }
}

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

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

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-50);
    border-radius: var(--radius-md);
    color: var(--color-emerald-600);
}

.contact-detail-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.contact-link {
    color: var(--color-emerald-600);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-emerald-500);
}

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

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: var(--color-cream-50);
    border: 1.5px solid var(--color-sage-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-emerald-400);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

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

.form-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald-100);
    border-radius: 50%;
    color: var(--color-emerald-600);
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo-icon {
    color: var(--color-emerald-400);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-emerald-300);
    margin-bottom: 20px;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    font-size: 0.8rem !important;
}

/* ============================================
   Animations
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid [data-aos] {
    transition-delay: calc(var(--index, 0) * 0.08s);
}
