/* ===== CSS Custom Properties ===== */
:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2d2d44;
    --charcoal-dark: #0f0f1a;
    --coral: #ff6b6b;
    --coral-dark: #e85555;
    --coral-light: #ff8787;
    --white: #ffffff;
    --off-white: #f8f8fc;
    --gray-100: #f0f0f5;
    --gray-200: #e0e0ea;
    --gray-400: #9494a8;
    --gray-600: #5a5a72;
    --gray-800: #2a2a3e;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
    --shadow-coral: 0 8px 30px rgba(255, 107, 107, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    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;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ===== Section Labels & Titles ===== */
.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--coral);
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.text-center {
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

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

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1001;
}

.logo-icon {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}

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

.nav-links a::after:hover {
    width: 100%;
}

.btn-nav {
    background: var(--coral);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.btn-nav::after {
    display: none;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 26, 0.92) 0%,
        rgba(26, 26, 46, 0.85) 50%,
        rgba(255, 107, 107, 0.15) 100%
    );
}

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

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

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--coral);
    opacity: 0.15;
    bottom: 10%;
    right: 5%;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: var(--coral);
    opacity: 0.1;
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 100px;
    max-width: 800px;
}

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

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--coral), transparent);
    animation: scrollLine 2s infinite;
}

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

.about-container {
    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: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

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

.floating-card-number {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--coral);
}

.floating-card-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
}

.about-content {
    position: relative;
    z-index: 2;
}

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

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

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

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.about-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--coral);
    opacity: 0.03;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

/* ===== Experience Section ===== */
.experience {
    position: relative;
    padding: 120px 0;
    background: var(--charcoal);
    overflow: hidden;
}

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

.experience .section-label::before {
    background: var(--coral);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.exp-card {
    background: var(--charcoal-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.exp-card-wide {
    grid-column: span 12;
}

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

.exp-card-img {
    height: 280px;
    overflow: hidden;
}

.exp-card-large .exp-card-img {
    height: 320px;
}

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

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

.exp-card-content {
    padding: 32px;
}

.exp-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--coral);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

.exp-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.exp-card-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.exp-bg-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--coral);
    opacity: 0.05;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

/* ===== Menu Section ===== */
.menu-section {
    position: relative;
    padding: 120px 0;
    background: var(--off-white);
    overflow: hidden;
}

.menu-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 107, 107, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.menu-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.menu-visual {
    position: relative;
}

.menu-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.menu-img-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.menu-img-tall {
    grid-row: span 2;
}

.menu-img-tall img {
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-img-short img {
    height: 160px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.menu-geo-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--coral);
    opacity: 0.1;
    border-radius: var(--radius-md);
    bottom: -40px;
    right: -40px;
    transform: rotate(30deg);
    pointer-events: none;
}

/* ===== Location Section ===== */
.location-section {
    padding: 120px 0;
    background: var(--white);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

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

.detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.detail-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.detail-item p {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.detail-item a {
    color: var(--coral);
    font-weight: 600;
}

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

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

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    box-shadow: var(--shadow-md);
}

.map-label {
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--charcoal);
    overflow: hidden;
}

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

.cta-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--coral);
    opacity: 0.06;
    top: -200px;
    left: -150px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--coral);
    opacity: 0.1;
    bottom: -100px;
    right: -50px;
}

.cta-square {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--coral);
    opacity: 0.05;
    top: 50%;
    right: 10%;
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content .section-label {
    justify-content: center;
}

.cta-content .section-label::before {
    display: none;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 48px;
}

.cta-form {
    background: var(--charcoal-light);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    background: var(--charcoal);
    border: 2px solid var(--gray-800);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

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

.cta-form .btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

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

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-400);
    line-height: 1.7;
}

.cta-direct {
    margin-top: 40px;
    text-align: center;
}

.cta-direct p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
}

.cta-links a:hover {
    color: var(--coral);
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal-dark);
    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 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo-dot {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

.footer-logo-sub {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--coral);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--gray-400);
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

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

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

@keyframes scrollLine {
    0% {
        opacity: 1;
        height: 40px;
    }
    50% {
        opacity: 0.5;
        height: 20px;
    }
    100% {
        opacity: 1;
        height: 40px;
    }
}

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

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-container,
    .menu-layout,
    .location-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .exp-card-large {
        grid-column: span 12;
    }
    
    .exp-card:not(.exp-card-large):not(.exp-card-wide) {
        grid-column: span 6;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--charcoal-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .exp-card:not(.exp-card-large):not(.exp-card-wide) {
        grid-column: span 12;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        padding: 32px 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-floating-card {
        left: 10px;
        bottom: -20px;
    }
    
    .geo-circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .geo-square-1 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .location-cta {
        flex-direction: column;
    }
    
    .location-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-links {
        flex-direction: column;
        gap: 16px;
    }
}
