/* ===================================
   Pandemos Beauty & Hair Salon
   Stylesheet
===================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-teal: #0D9488;
    --color-teal-light: #14B8A6;
    --color-teal-dark: #0F766E;
    --color-teal-50: #F0FDFA;
    --color-teal-100: #CCFBF1;
    --color-teal-200: #99F6E4;
    
    --color-slate-50: #F8FAFC;
    --color-slate-100: #F1F5F9;
    --color-slate-200: #E2E8F0;
    --color-slate-300: #CBD5E1;
    --color-slate-400: #94A3B8;
    --color-slate-500: #64748B;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1E293B;
    --color-slate-900: #0F172A;
    
    --color-accent: #F59E0B;
    --color-accent-light: #FCD34D;
    
    --color-white: #FFFFFF;
    --color-black: #0F172A;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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.6;
    color: var(--color-slate-800);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

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

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

.btn-primary {
    background: var(--color-teal);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    background: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

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

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

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

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

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-slate-100);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-slate-900);
    letter-spacing: -0.5px;
}

.logo-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-teal);
    margin-top: 2px;
}

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

.main-nav a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-slate-600);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--color-teal);
    background: var(--color-teal-50);
}

.nav-cta {
    margin-left: 8px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--color-slate-100);
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-slate-700);
    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);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-slate-600);
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--color-slate-100);
    color: var(--color-slate-900);
}

.mobile-menu-overlay ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-menu-overlay a {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-slate-800);
    padding: 12px 24px;
    transition: var(--transition);
}

.mobile-menu-overlay a:hover {
    color: var(--color-teal);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--color-slate-50);
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--color-teal-100);
    top: -150px;
    right: -100px;
    opacity: 0.6;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-accent-light);
    bottom: 15%;
    left: 5%;
    opacity: 0.5;
}

.geo-rect-1 {
    width: 120px;
    height: 120px;
    background: var(--color-teal);
    top: 20%;
    left: 3%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    opacity: 0.15;
}

.geo-dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--color-teal) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
    bottom: 25%;
    right: 8%;
}

.hero-inner {
    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;
    padding: 8px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-teal-200);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-teal-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-teal);
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-slate-900);
    margin-bottom: 24px;
}

.accent-text {
    color: var(--color-teal);
    font-style: italic;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-slate-600);
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-slate-500);
}

.trust-item svg {
    color: var(--color-teal);
    flex-shrink: 0;
}

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

.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 600/750;
    background: var(--color-slate-200);
}

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

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

.floating-card.card-1 {
    bottom: 15%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 10%;
    right: -20px;
    animation-delay: 2s;
}

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

.card-icon--teal {
    background: var(--color-teal);
    color: var(--color-white);
}

.floating-card strong {
    display: block;
    font-size: 14px;
    color: var(--color-slate-900);
}

.floating-card span {
    font-size: 12px;
    color: var(--color-slate-500);
}

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

/* --- Section shared --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-teal);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-slate-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--color-slate-500);
    line-height: 1.7;
}

/* --- Services --- */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--color-white);
    overflow: hidden;
}

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

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-card--accent {
    background: var(--color-teal);
    border-color: var(--color-teal);
}

.service-card--accent::before {
    background: var(--color-accent);
}

.service-card--accent .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.service-card--accent h3 {
    color: var(--color-white);
}

.service-card--accent p {
    color: rgba(255, 255, 255, 0.85);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-teal);
    color: var(--color-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-slate-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-slate-500);
}

/* Decorative */
.geo-decoration {
    position: absolute;
    pointer-events: none;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent var(--color-teal-100) transparent;
    bottom: 10%;
    right: 5%;
    opacity: 0.5;
    transform: rotate(-15deg);
}

.geo-square {
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-accent-light);
    border-radius: var(--radius-sm);
    top: 15%;
    left: 3%;
    opacity: 0.4;
    transform: rotate(45deg);
}

.geo-circle-3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--color-teal-50);
    bottom: -100px;
    right: -80px;
    opacity: 0.6;
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--color-slate-50);
    position: relative;
    overflow: hidden;
}

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

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

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 560/640;
    background: var(--color-slate-200);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--color-white);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 300/400;
    background: var(--color-slate-200);
}

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

.about-stat-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-teal);
    color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-stat-card .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.about-stat-card .stat-label {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 4px;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-slate-600);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-slate-700);
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    flex-shrink: 0;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-slate-200);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.gallery-item--large {
    grid-column: span 6;
}

.gallery-item:not(.gallery-item--large) {
    grid-column: span 3;
}

/* --- CTA Strip --- */
.cta-strip {
    padding: 80px 0;
    background: var(--color-teal);
    position: relative;
    overflow: hidden;
}

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

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

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 500px;
}

.cta-strip-actions {
    flex-shrink: 0;
}

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

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

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-slate-500);
    margin-bottom: 36px;
}

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

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

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

.contact-item strong {
    display: block;
    font-size: 15px;
    color: var(--color-slate-900);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--color-slate-500);
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-teal);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-teal-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-slate-200);
}

/* Contact form */
.contact-form-wrap {
    position: relative;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-slate-100);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-slate-900);
    margin-bottom: 8px;
}

.form-desc {
    font-size: 15px;
    color: var(--color-slate-500);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-slate-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-slate-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-slate-800);
    background: var(--color-slate-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-teal);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

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

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

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-teal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal);
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-slate-900);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--color-slate-500);
    line-height: 1.7;
}

.form-success a {
    color: var(--color-teal);
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: var(--color-slate-900);
    color: var(--color-slate-400);
    padding: 60px 0 0;
}

.logo--light .logo-text {
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-slate-800);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-slate-300);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--color-slate-400);
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--color-teal-light);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 24px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--color-teal-light);
    transition: var(--transition);
}

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

/* --- Scroll reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-rows: repeat(2, 240px);
    }
    
    .gallery-item--large {
        grid-column: span 6;
    }
    
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-card.card-1 {
        left: -10px;
        bottom: 10%;
    }
    
    .floating-card.card-2 {
        right: -10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    
    .about-content .btn {
        margin: 0 auto;
    }
    
    .about-img-accent {
        right: -10px;
        bottom: -20px;
    }
    
    .about-stat-card {
        left: -10px;
        top: -10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item--large {
        grid-column: span 2;
    }
    
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 1;
    }
    
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-desc {
        text-align: center;
    }
    
    .contact-form-card {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large,
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 1;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .floating-card {
        display: none;
    }
}
