:root {
    --primary: #1a1a2e;
    --secondary: #0f3460;
    --accent: #c5a572;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --dark: #16213e;
    --gradient: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.logo-with-image {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-with-image img {
    display: block;
    width: 250px;
    height: 60px;
    object-fit: contain;
}

.logo-with-image .logo-text {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent);
}

.cta-button {
    background: var(--accent);
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 165, 114, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--accent);
    display: block;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 12rem 2rem 6rem;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-hero.has-hero-image {
    background-image: var(--gradient), var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

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

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero h1 span {
    color: var(--accent);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Booking Form */
.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-form p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-group label {
    font-weight: 400;
    color: var(--gray);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    color: var(--primary);
    transition: all 0.3s ease;
}

input[type="date"],
input[type="time"] {
    width: 100%;
    box-sizing: border-box;
}

.form-group textarea {
    background-color: #ffffff;
    color: var(--primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.input-invalid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

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

.form-group select {
    cursor: pointer;
}

.autocomplete-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    z-index: 10;
    display: none;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
}

.autocomplete-results.is-visible {
    display: block;
}

.autocomplete-item {
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary);
}

.autocomplete-item:hover,
.autocomplete-item:focus {
    background: #f1f5f9;
}

.submit-btn {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

/* Sections */
.services {
    padding: 8rem 2rem;
    background: var(--light);
}

.about-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.service-areas {
    padding: 6rem 2rem;
    background: var(--light);
}

.values-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.services-container,
.about-container,
.areas-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(197, 165, 114, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transition: left 0.4s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

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

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.feature-item {
    display: flex;
    gap: 2rem;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-text h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.content-text strong {
    color: var(--primary);
    font-weight: 600;
}

.highlight-box {
    background: rgba(197, 165, 114, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
}

.content-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-text ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--gray);
}

.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.3) 20px
    );
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.image-placeholder span {
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

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

.value-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Statistics */
.stats-section {
    padding: 6rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: var(--light);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient);
    border-radius: 30px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s linear infinite;
}

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

.cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(197, 165, 114, 0.1);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray);
    line-height: 1.8;
}

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

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-about h3 span {
    color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

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

/* Transfer Links Section */
.transfer-links {
    background: var(--light);
    padding: 3rem 2rem;
}

.transfer-links-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.transfer-links h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.transfer-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.transfer-links-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    background: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.transfer-links-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    color: var(--accent);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1440px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    nav .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    nav .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form {
        padding: 2rem;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.8s ease 1s both;
}

.floating-cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-cta-btn.phone {
    background: var(--accent);
}

.floating-cta-btn.whatsapp {
    background: #25D366;
}

.floating-cta-btn svg {
    width: 28px;
    height: 28px;
}

/* Tooltip */
.floating-cta-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.floating-cta-btn:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .language-switcher {
        width: 100%;
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-cta-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-cta-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-cta-btn::before {
        display: none;
    }
}

/* Contact Form */
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}



/* Contact Form Layout */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }
}

/* Textarea (Konsistenz) */
.contact-form-wrapper textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}



/* Privacy Consent Box */
.privacy-consent {
    margin: 2rem 0 1.5rem;
}

.privacy-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-box:hover {
    border-color: var(--accent);
    background: #ffffff;
}

/* Hide native checkbox */
.privacy-box input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom checkbox */
.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    position: relative;
}

.privacy-box input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Text */
.privacy-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.privacy-link {
    display: inline-block;
    margin-left: 0.3rem;
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-box.invalid {
    border-color: #e74c3c;
    background: #fff5f5;
}

/* ============================
   OFFERS PAGE
============================ */
.offers-hero {
    min-height: 40vh;
    position: relative;
    overflow: hidden;
}

.offers-hero .page-hero-content {
    position: relative;
    z-index: 2;
}

.offers-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.35));
    z-index: 1;
}

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

.offers-hero-map iframe,
.offers-hero-map > div {
    width: 100%;
    height: 100%;
}

.offers-page {
    padding: 4rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.offers-map {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.offers-booking-details {
    margin-top: 1.5rem;
    background: #f8f9fb;
    border-radius: 16px;
    padding: 1.5rem;
}

.offers-booking-details h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.offers-booking-details .form-group label {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
    margin-bottom: 0.35rem;
}

.offers-booking-details input,
.offers-booking-details select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #e0e3e8;
    background: #ffffff;
    font-family: inherit;
}

.route-points {
    margin: 1.5rem 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid #eceff4;
}

.route-points-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.route-points-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.route-point-list {
    display: grid;
    gap: 0.75rem;
}

.route-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fafbfc;
    cursor: grab;
}

.route-point.dragging {
    opacity: 0.6;
}

.route-point.drag-target {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.12);
}

.drag-handle {
    font-size: 1.1rem;
    color: var(--gray);
}

.route-point-fields label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.route-point-fields input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #e0e3e8;
    background: #ffffff;
    font-family: inherit;
}

.offers-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--gray);
}

.offers-section {
    margin-top: 2rem;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #eceff4;
}

.offers-section h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.summary-list {
    display: grid;
    gap: 0.85rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.summary-item strong {
    color: var(--primary);
    text-align: right;
}

.summary-total strong {
    font-size: 1.2rem;
    color: var(--accent);
    text-shadow: 0 6px 16px rgba(229, 57, 53, 0.3);
}

.offers-summary strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 0.35rem;
}

.route-map {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #f2f4f8;
}

.offers-vehicles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: border 0.3s ease, transform 0.3s ease;
}

.vehicle-card.is-hidden {
    display: none;
}

.vehicle-card.selected {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.selected-vehicle-card {
    border-style: dashed;
    background: #f9fafb;
}

.selected-vehicle-card .vehicle-meta {
    margin-bottom: 0.35rem;
}

.vehicle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.vehicle-price {
    font-weight: 600;
    color: var(--accent);
    background: rgba(229, 57, 53, 0.12);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(229, 57, 53, 0.25);
}

.payment-methods {
    display: grid;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.payment-methods p {
    margin: 0;
    color: var(--primary);
    font-weight: 500;
}

.payment-methods label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 0.75rem;
}

.vehicle-meta {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.vehicle-extras {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.offers-info-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.offers-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #eceff4;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.offers-info-card h4 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.offers-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--gray);
    display: grid;
    gap: 0.5rem;
}

.offers-info-card li::before {
    content: "•";
    color: var(--accent);
    margin-right: 0.5rem;
}

.extras-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.extra-btn {
    border: 1px solid #d3d7de;
    background: #f5f6f9;
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.extra-btn.active {
    border-color: var(--accent);
    background: rgba(229, 57, 53, 0.12);
    color: var(--accent);
}

.vehicle-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
}

.is-hidden {
    display: none;
}

/* ============================
   MULTI-STEP FORM
============================ */
.form-steps-page {
    padding: 3rem 0 5rem;
}

.form-steps-header {
    margin-bottom: 2.5rem;
}

.steps-progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    align-items: center;
}

.step-pill {
    border: none;
    background: #ffffff;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--gray);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.step-pill span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #d6dbe3;
    color: #6b7280;
    font-weight: 600;
    background: #ffffff;
}

.step-pill strong {
    text-align: left;
    font-weight: 600;
    line-height: 1.2;
}

.step-pill.active span {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.step-pill.done span {
    border-color: #16a34a;
    background: #16a34a;
    color: #ffffff;
}

.multi-step-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.form-card h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    border: 1px solid #e0e3e8;
    background: #f9fafb;
    font-family: inherit;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.counter-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
}

.counter-icon {
    font-size: 1.4rem;
}

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.counter-controls input {
    width: 40px;
    text-align: center;
    padding: 0.35rem;
    border-radius: 10px;
    background: #ffffff;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #e5e7eb;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.form-actions.split {
    justify-content: space-between;
}

.primary-btn,
.secondary-btn {
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

.primary-btn {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(229, 57, 53, 0.25);
}

.secondary-btn {
    background: #e5e7eb;
    color: #111827;
}

.summary-box {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
}

.summary-total {
    border-top: 1px dashed #cbd5f5;
    padding-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.summary-total div {
    display: flex;
    justify-content: space-between;
}

.summary-highlight {
    font-size: 1.1rem;
    font-weight: 700;
}

.checkbox-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.secure-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
}
 
