:root {
    --primary: #1a5f4a;
    --primary-dark: #134436;
    --secondary: #d4a853;
    --accent: #e8533c;
    --dark: #1c2833;
    --light: #f7f9fb;
    --gray: #6b7c93;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    font-size: 17px;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

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

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a5f4a 0%, #0d3d2e 50%, #1c2833 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212,168,83,0.2);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212,168,83,0.3);
}

.hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.hero-desc {
    font-size: 19px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: linear-gradient(45deg, #2d8b6e, #1a5f4a);
}

.hero-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-float-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.hero-float-text strong {
    display: block;
    font-size: 22px;
    color: var(--dark);
}

.hero-float-text span {
    font-size: 14px;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #c49a47;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,83,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #2c3e50;
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #d14432;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Story Section */
.story-section {
    padding: 100px 0;
}

.story-lead {
    font-size: 28px;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 300;
}

.story-text {
    font-size: 18px;
    margin-bottom: 28px;
    color: #4a5568;
}

.story-text:first-letter {
    font-size: 64px;
    float: left;
    line-height: 1;
    margin-right: 16px;
    color: var(--primary);
    font-weight: 700;
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    margin: 48px 0;
    position: relative;
    overflow: hidden;
}

.story-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 180px;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.story-highlight p {
    font-size: 22px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.inline-image {
    margin: 48px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.inline-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(45deg, #3d9970, #1a5f4a);
}

.inline-image figcaption {
    padding: 16px;
    background: var(--light);
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 600px;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(45deg, #2980b9, #1a5f4a);
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.split-content p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 20px;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-dark {
    background: var(--dark);
    color: var(--white);
}

.split-dark p {
    color: rgba(255,255,255,0.8);
}

/* Destinations Grid */
.destinations {
    padding: 100px 0;
    background: var(--light);
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark);
}

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

.dest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.dest-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

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

.dest-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: linear-gradient(45deg, #27ae60, #1a5f4a);
}

.dest-card:hover .dest-card-image img {
    transform: scale(1.08);
}

.dest-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dest-card-body {
    padding: 28px;
}

.dest-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.dest-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 16px;
}

.dest-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.dest-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.dest-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 32px;
    background: var(--white);
    border: 1px solid #e8ecf1;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 15px;
    color: var(--gray);
}

.service-meta {
    text-align: right;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.service-unit {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a5f4a 0%, #134436 100%);
    color: var(--white);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.7;
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 20px;
}

/* CTA Sections */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--light);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #c49a47 100%);
    padding: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner h3 {
    font-size: 32px;
    color: var(--dark);
}

.cta-banner p {
    font-size: 17px;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 32px;
}

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

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.form-benefits li:last-child {
    border-bottom: none;
}

.form-benefits svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf1;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,95,74,0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--secondary);
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--white);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-story-text {
    flex: 1;
}

.about-story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-story-text p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 16px;
}

.about-story-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-story-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: linear-gradient(45deg, #2ecc71, #1a5f4a);
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    padding: 40px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--gray);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 40px;
}

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

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

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-item-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 15px;
    color: var(--gray);
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Thanks Page */
.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.thanks-service strong {
    color: var(--primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--dark);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        width: 100%;
    }

    .hero-float {
        left: 50%;
        transform: translateX(-50%);
    }

    .split-section {
        flex-direction: column;
    }

    .split-reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 24px;
    }

    .split-visual {
        min-height: 400px;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}

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

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .dest-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

/* Urgency Elements */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.limited-spots {
    background: rgba(232,83,60,0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin: 24px 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 60px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 14px;
}

.trust-badge svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin: 40px 0;
}

.inline-cta h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.inline-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

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

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

.feature-check svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.feature-item p {
    font-size: 16px;
    color: var(--dark);
    margin: 0;
}

/* Reveal Section */
.reveal-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.reveal-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}
