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

:root {
    --charcoal: #1a1d23;
    --charcoal-light: #2a2d35;
    --charcoal-mid: #3a3d45;
    --coral: #FF6B4A;
    --coral-light: #FF8A70;
    --coral-dark: #E85535;
    --coral-pale: #FFF0EC;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #FDF6F3;
    --text-primary: #1a1d23;
    --text-secondary: #5a5d65;
    --text-light: #8a8d95;
    --bg-section: #F7F3F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(26, 29, 35, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 29, 35, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 29, 35, 0.15);
    --shadow-coral: 0 8px 30px rgba(255, 107, 74, 0.3);
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ===== GEOMETRIC DECORATIVE SHAPES ===== */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.shape-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--coral);
    top: -200px;
    right: -200px;
}

.shape-square-1 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    bottom: 20%;
    left: -100px;
    transform: rotate(45deg);
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--coral);
    top: 50%;
    right: 5%;
    opacity: 0.03;
}

.shape-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--charcoal);
    bottom: 10%;
    right: 10%;
    opacity: 0.02;
}

.shape-ring-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 40px solid var(--coral);
    top: 60%;
    left: -150px;
    opacity: 0.02;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    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-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-logo-icon {
    font-size: 1.4rem;
    color: var(--coral);
}

.nav-logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--coral);
}

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

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

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

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

.navbar.scrolled .nav-link:hover {
    color: var(--charcoal);
    background: var(--cream);
}

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

.nav-link--cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    background: var(--charcoal);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1d23 0%, #2a2d35 40%, #3d2a22 70%, var(--coral-dark) 100%);
    padding: 120px 24px 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 74, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 138, 112, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 74, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 74, 0.2);
}

.hero-circle--1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    border-color: rgba(255, 138, 112, 0.15);
    animation: float 6s ease-in-out infinite reverse;
}

.hero-diamond {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 74, 0.08);
    transform: rotate(45deg);
}

.hero-diamond--1 {
    top: 20%;
    left: 10%;
    animation: spin 12s linear infinite;
}

.hero-diamond--2 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 15%;
    background: rgba(255, 138, 112, 0.06);
    animation: spin 8s linear infinite reverse;
}

.hero-stripe {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 74, 0.3), transparent);
    border-radius: 2px;
}

.hero-stripe--1 {
    width: 200px;
    top: 35%;
    left: 5%;
    transform: rotate(-15deg);
    animation: slideStripe 4s ease-in-out infinite;
}

.hero-stripe--2 {
    width: 150px;
    bottom: 25%;
    right: 8%;
    transform: rotate(10deg);
    animation: slideStripe 5s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 74, 0.15);
    border: 1px solid rgba(255, 107, 74, 0.3);
    border-radius: 100px;
    color: var(--coral-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.headline-accent {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    line-height: 1.5;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 74, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translate(4px, 0);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--coral);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 107, 74, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== SECTION COMMON ===== */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 20px;
}

.title-accent {
    color: var(--coral);
}

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

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

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

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520/640;
}

.about-img-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-md);
    bottom: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.3;
}

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

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

.about-stat-card .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

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

.about-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--coral-pale);
    transform: translateX(4px);
}

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

/* ===== CATEGORIES ===== */
.categories {
    padding: 120px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.geo-accent {
    position: absolute;
    pointer-events: none;
}

.geo-accent--1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.04;
    top: 10%;
    right: -100px;
}

.geo-accent--2 {
    width: 200px;
    height: 200px;
    background: var(--charcoal);
    opacity: 0.03;
    bottom: 10%;
    left: -60px;
    transform: rotate(30deg);
}

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

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

.category-card--large {
    grid-column: span 7;
}

.category-card:not(.category-card--large) {
    grid-column: span 5;
}

.category-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.category-card--large .category-img {
    height: 280px;
}

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

.category-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.5) 0%, transparent 60%);
}

.category-card:hover .category-img-overlay {
    background: linear-gradient(to top, rgba(26, 29, 35, 0.6) 0%, transparent 70%);
}

.category-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    width: fit-content;
}

.category-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.category-geo {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--coral);
    opacity: 0.3;
    transition: var(--transition);
}

.category-card:hover .category-geo {
    opacity: 0.6;
    transform: rotate(15deg);
}

/* ===== WHY US ===== */
.why-us {
    padding: 120px 0;
    background: var(--charcoal);
    overflow: hidden;
}

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

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

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

.why-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-feature:first-child {
    border-top: none;
}

.why-feature-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.5;
    line-height: 1;
}

.why-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.why-visual {
    position: relative;
}

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

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

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

.why-img--1 {
    width: 320px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.why-img--2 {
    width: 260px;
    height: 320px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.why-geo-block {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--coral);
    opacity: 0.2;
    border-radius: var(--radius-md);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    z-index: 0;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

.visit-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(255, 107, 74, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 138, 112, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visit-content {
    padding: 64px;
    display: flex;
    flex-direction: column;
}

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

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.visit-detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.visit-detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.5;
}

.visit-phone {
    color: var(--coral);
    transition: var(--transition);
}

.visit-phone:hover {
    color: var(--coral-dark);
}

.visit-map {
    position: relative;
    min-height: 400px;
}

.map-link {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}

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

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

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 29, 35, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    transition: var(--transition);
}

.map-link:hover .map-overlay {
    background: rgba(26, 29, 35, 0.6);
}

.map-overlay svg {
    transition: var(--transition);
}

.map-link:hover .map-overlay svg {
    transform: translate(4px, -4px);
}

.map-overlay span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-logo-icon {
    font-size: 1.8rem;
    color: var(--coral);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

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

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

.footer-quick-links a:hover {
    color: var(--coral);
    transform: translateX(4px);
}

.footer-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-phone:hover {
    color: var(--coral-light);
}

.footer-address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes slideStripe {
    0%, 100% { transform: rotate(-15deg) translateX(0); opacity: 0.5; }
    50% { transform: rotate(-15deg) translateX(20px); opacity: 1; }
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-visual {
        max-width: 440px;
        margin: 0 auto;
    }

    .why-img-stack {
        height: 440px;
    }

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

    .category-card--large {
        grid-column: span 2;
    }

    .category-card:not(.category-card--large) {
        grid-column: span 1;
    }

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

    .visit-content {
        padding: 48px;
    }

    .visit-map {
        min-height: 300px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 16px;
    }

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

    .nav-link--cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-circle--1 {
        width: 300px;
        height: 300px;
    }

    .hero-circle--2 {
        width: 180px;
        height: 180px;
    }

    .hero-diamond {
        display: none;
    }

    .hero-stripe {
        display: none;
    }

    .hero-trust {
        gap: 16px;
    }

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

    .category-card--large {
        grid-column: span 1;
    }

    .category-card:not(.category-card--large) {
        grid-column: span 1;
    }

    .category-img {
        height: 180px;
    }

    .category-card--large .category-img {
        height: 220px;
    }

    .visit-content {
        padding: 32px;
    }

    .about-img-accent {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }

    .about-stat-card {
        padding: 16px 20px;
    }

    .about-stat-card .stat-number {
        font-size: 1.5rem;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .why-img-stack {
        height: 360px;
    }

    .why-img--1 {
        width: 240px;
        height: 300px;
    }

    .why-img--2 {
        width: 200px;
        height: 260px;
    }
}

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

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

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .about-highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .visit-content {
        padding: 24px;
    }

    .visit-detail {
        flex-direction: column;
        gap: 8px;
    }
}
