:root {
    --bg-color: #F8F9FA; /* Premium light grey/white */
    --bg-secondary: #FFFFFF;
    --text-primary: #1A1D20;
    --text-secondary: #6B7280;
    
    --primary-color: #5C6BFA; /* Modern Blue/Purple from reference */
    --accent-1: #8B5CF6; /* Purple */
    --accent-2: #E0E7FF; /* Light Indigo background */
    --accent-3: #5C6BFA; /* Blue */
    
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(92, 107, 250, 0.1);
    --card-hover: rgba(255, 255, 255, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Atmosphere */
.blob {
    position: absolute;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-1), transparent 70%);
}

.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-3), var(--accent-2), transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hover-effect {
    transition: transform var(--transition-medium), background var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.hover-effect:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    border-color: rgba(92, 107, 250, 0.3);
    box-shadow: 0 20px 40px rgba(92, 107, 250, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(92, 107, 250, 0.4);
}

.btn-primary:hover {
    background: #4A56E2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 107, 250, 0.5);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(92, 107, 250, 0.05);
    color: var(--primary-color);
    border: 1px solid rgba(92, 107, 250, 0.2);
}

.btn-secondary:hover {
    background: rgba(92, 107, 250, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}
.mt-4 {
    margin-top: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1000;
    transition: all var(--transition-medium);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.logo img {
    height: 100px; /* Large professional logo */
    width: auto;
    transition: height var(--transition-medium);
    mix-blend-mode: multiply;
}

.navbar.scrolled .logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.mockup-card {
    height: 400px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--card-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.ai-animation {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.ai-core {
    width: 40px;
    height: 40px;
    background: var(--text-primary);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.ai-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.ring-1 {
    width: 80px; height: 80px;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
.ring-2 {
    width: 120px; height: 120px;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1) 0.5s;
}
.ring-3 {
    width: 160px; height: 160px;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1) 1s;
}

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

.mockup-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loading-skeleton {
    height: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 6px;
    width: 100%;
}

.loading-skeleton.short {
    width: 60%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
}

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

/* About Us Visual */
.about-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(92, 107, 250, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.col-span-2 {
    grid-column: span 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Process Model (Redesigned) */
.process {
    padding: 8rem 0;
    background: transparent;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-block.reverse {
    direction: rtl;
}

.process-block.reverse > * {
    direction: ltr;
}

.process-visual {
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--card-bg);
}

.process-content {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.process-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Process 1 Animations (Map/Analysis) */
.visual-bg-pattern {
    position: absolute;
    inset: 1rem;
    background-image: linear-gradient(var(--card-border) 2px, transparent 2px);
    background-size: 100% 2rem;
    opacity: 0.5;
}

.file-lines {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.line {
    height: 12px;
    background: var(--card-border);
    border-radius: 6px;
    width: 100%;
}

.line.short { width: 70%; }

.floating-icon {
    position: absolute;
    color: var(--primary-color);
    font-size: 2rem;
    filter: drop-shadow(0 10px 10px rgba(92, 107, 250, 0.4));
    z-index: 3;
}

.pin-1 { top: 20%; left: 30%; animation: float 4s ease-in-out infinite; }
.pin-2 { bottom: 30%; right: 30%; animation: float 5s ease-in-out infinite reverse; }

.target-circle {
    top: 50%;
    right: 20%;
    font-size: 5rem;
    opacity: 0.2;
    color: var(--text-primary);
    transform: translate(50%, -50%);
    animation: spin 20s linear infinite;
}

/* Process 2 Animations (Code/Browser) */
.browser-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.02);
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--card-border);
}

.browser-header .dot {
    width: 12px; height: 12px;
    background: var(--card-border);
    border-radius: 50%;
}

.code-lines {
    width: 80%;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.c-line {
    height: 10px;
    background: var(--card-border);
    border-radius: 5px;
    animation: typeWidth 3s steps(40, end) infinite alternate;
}

.c-line.indented { margin-left: 2rem; }
.l1 { width: 40%; animation-delay: 0s; }
.l2 { width: 60%; animation-delay: 0.2s; }
.l3 { width: 80%; animation-delay: 0.4s; }
.l4 { width: 50%; animation-delay: 0.6s; }
.l5 { width: 70%; animation-delay: 0.8s; }
.l6 { width: 30%; animation-delay: 1.0s; }

@keyframes typeWidth {
    0% { transform: scaleX(0.2); transform-origin: left; opacity: 0.5; }
    100% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

/* Process 3 Animations (Rocket) */
.rocket-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-2) 0%, transparent 60%);
    opacity: 0.5;
}

.rocket-icon {
    font-size: 4rem;
    color: var(--primary-color);
    z-index: 5;
    transform: rotate(45deg);
    animation: launch 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 20px rgba(92, 107, 250, 0.4));
}

.speed-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.s-line {
    position: absolute;
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.3;
    transform: rotate(45deg);
}

.s-line:nth-child(1) { top: 20%; left: 20%; animation: shoot 2s infinite 0.1s; }
.s-line:nth-child(2) { top: 60%; right: 30%; animation: shoot 2.5s infinite 0.5s; }
.s-line:nth-child(3) { bottom: 20%; left: 40%; animation: shoot 1.8s infinite 1.2s; }

@keyframes launch {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(-10px, -10px); }
}

@keyframes shoot {
    0% { transform: rotate(45deg) translateY(-100px); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: rotate(45deg) translateY(200px); opacity: 0; }
}

@keyframes spin {
    100% { transform: translate(50%, -50%) rotate(360deg); }
}

/* About Us */
.about {
    padding: 8rem 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    overflow: hidden;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(92, 107, 250, 0.05), rgba(92, 107, 250, 0.15));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(92, 107, 250, 0.4) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s infinite ease-in-out alternate;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(45deg); }
}

/* Booking Section */
.booking {
    padding: 8rem 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.booking-info {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.1;
}

.booking-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.booking-benefits i {
    color: #27C93F;
    font-size: 1.2rem;
}

.booking-ui {
    background: #AFAFAF; /* Solid modern gray from reference */
    padding: 5rem 4rem;
    color: #1A1D20;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.calendar-header h3 {
    font-size: 1.4rem;
    color: #1A1D20;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #1A1D20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
    text-align: center;
}

.weekday {
    font-size: 0.85rem;
    color: rgba(26, 29, 32, 0.6);
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: transparent;
    color: #1A1D20;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background: rgba(255, 255, 255, 0.3);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: #FFFFFF;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(92, 107, 250, 0.3);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.time-slots {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.time-slots h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.1);
}

.time-slot.selected {
    background: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(92, 107, 250, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-medium);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.faq-question .icon-close {
    display: none;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    text-align: left;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-question .icon-plus {
    display: none;
}
.faq-item.active .faq-question .icon-close {
    display: block;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Block below FAQ */
.cta-block {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 3rem auto 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(92, 107, 250, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-block h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.cta-block p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cta-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
}

/* Footer (Redesigned matching reference) */
footer {
    padding: 6rem 0 2rem 0;
    background: transparent;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 120px; /* Large logo for footer */
    width: auto;
    mix-blend-mode: multiply;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.social-icons a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: rgba(92, 107, 250, 0.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.right {
    transform: translateX(30px);
}

.reveal.left {
    transform: translateX(-30px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { gap: 2rem; }
    .about-wrapper { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-ui { border-left: none; border-top: 1px solid var(--card-border); padding: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-subtitle { margin: 0 auto 2.5rem auto; }
    
    .features-grid { grid-template-columns: 1fr; }
    .col-span-2 { grid-column: span 1; }
    
    .timeline::before { left: 40px; }
    .timeline-item, .timeline-item:nth-child(even) { 
        justify-content: flex-start; 
        padding-left: 80px; 
        padding-right: 0; 
    }
    .timeline-dot { left: 40px; }
    .timeline-line { left: 40px; }
    
    .timeline-item:nth-child(even) .timeline-content { margin-left: 0; }
    .timeline-content { width: 100%; }
    
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    
    .section-title { font-size: 2.5rem; }
}
