* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    background: #fafaf8;
    overflow-x: hidden;
    padding-top: 0;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    display: none;
}

@media (max-width: 768px) {
    .sticky-header {
        display: block;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c4a57b;
    text-transform: uppercase;
}

.header-phone {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c4a57b 0%, #8b7355 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 165, 123, 0.3);
}

/* Mobile Floating CTA */
.mobile-float-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c4a57b 0%, #8b7355 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .mobile-float-cta {
        display: block;
    }
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 50%, #d4c5a9 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leaf-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 Q140,60 120,100 Q140,140 100,180 Q80,140 60,100 Q40,60 100,20" fill="none" stroke="%23c4b5a0" stroke-width="0.5" opacity="0.15"/><path d="M150,40 Q170,70 160,100 Q170,130 150,160" fill="none" stroke="%23c4b5a0" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 400px;
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
}

.passport-stamp {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(180, 150, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    animation: fadeInRotate 1.5s ease-out;
}

.passport-stamp-text {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(180, 150, 110, 0.4);
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8b7355;
    margin-bottom: 60px;
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 24px;
    font-weight: 300;
    color: #6b5d4f;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8b7355 0%, #6b5d4f 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.35);
}

/* About Section */
.about {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text.highlight {
    font-size: 22px;
    font-weight: 400;
    color: #6b5d4f;
    font-style: italic;
    margin-top: 50px;
    margin-bottom: 50px;
}

.credentials {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e8dcc8;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.badge-icon {
    font-size: 28px;
    color: #c4a57b;
    font-weight: bold;
}

.badge-text {
    font-size: 14px;
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
}

/* Destinations Section */
.destinations {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.destination-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.destination-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.destination-image.hawaii-img {
    background-image: url('Hawaii.jpg'), linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
    background-size: cover;
    background-position: center;
}

.destination-image.cabo-img {
    background-image: url('Cabo.jpg'), linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    background-size: cover;
    background-position: center;
}

.destination-image.tahoe-img {
    background-image: url('Lake%20Tahoe.jpg'), linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
    background-size: cover;
    background-position: center;
}

.destination-content {
    padding: 35px;
}

.destination-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.destination-content p {
    font-size: 15px;
    color: #6b5d4f;
    line-height: 1.7;
    margin-bottom: 15px;
}

.destination-price {
    font-weight: 600;
    color: #8b7355;
    font-size: 16px;
    margin: 20px 0;
}

.dest-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5d4f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

/* Available Now Section */
.available-now {
    padding: 120px 20px;
    background: #fff;
}

.available-container {
    max-width: 1200px;
    margin: 0 auto;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.inventory-card {
    background: #fafaf8;
    padding: 40px 35px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inventory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.inventory-card.featured {
    border: 2px solid #c4a57b;
    background: #fff;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c4a57b 0%, #8b7355 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inventory-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.inventory-card .location {
    font-size: 14px;
    color: #8b7355;
    margin-bottom: 15px;
    font-weight: 500;
}

.inventory-card .details {
    font-size: 14px;
    color: #6b5d4f;
    margin-bottom: 5px;
}

.inventory-card .dates {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 600;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e8dcc8;
    border-bottom: 1px solid #e8dcc8;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.retail-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.our-price {
    font-size: 22px;
    color: #8b7355;
    font-weight: 700;
}

.reserve-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5d4f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

/* Recently Booked Section */
.recently-booked {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
}

.booked-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.booked-item {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    border: 1px solid #e8dcc8;
}

.booked-badge {
    display: inline-block;
    background: #6b5d4f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.booked-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.booked-item p {
    font-size: 14px;
    color: #8b7355;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 20px;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.testimonial-card {
    background: #fafaf8;
    padding: 50px 45px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: #c4a57b;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e8dcc8;
    padding-top: 20px;
}

.testimonial-author .name {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.testimonial-author .location {
    font-size: 14px;
    color: #8b7355;
}

/* FAQ Section */
.faq {
    padding: 120px 20px 160px;
    background: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.faq-item {
    background: #fafaf8;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.9;
    color: #6b5d4f;
    font-weight: 300;
}

/* Referral Section */
.referral {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.referral::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 Q140,60 120,100 Q140,140 100,180 Q80,140 60,100 Q40,60 100,20" fill="none" stroke="%23c4b5a0" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
}

.referral-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.referral .section-title {
    color: #2c2c2c;
}

.referral-text {
    font-size: 20px;
    color: #6b5d4f;
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 300;
}

.referral .cta-button {
    background: linear-gradient(135deg, #8b7355 0%, #6b5d4f 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.25);
}

.features {
    padding: 120px 20px;
    background: #fff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #8b7355;
    margin-bottom: 80px;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 25px;
    color: #c4a57b;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.feature p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b5d4f;
    font-weight: 300;
}

.concierge-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    position: relative;
}

.concierge-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concierge-section .section-title {
    color: #f5f0e8;
}

.concierge-section .section-subtitle {
    color: #c4a57b;
}

.concierge-form {
    background: #fff;
    padding: 60px 50px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-top: 50px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b5d4f;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e8dcc8;
    background: #fafaf8;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #2c2c2c;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c4a57b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5d4f 100%);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.35);
}

footer {
    padding: 60px 20px 30px;
    background: #1a1a1a;
    color: #c4a57b;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #c4a57b;
}

.footer-section a,
.footer-section p {
    display: block;
    color: #c4a57b;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e8dcc8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    letter-spacing: 1px;
    color: #8b7355;
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .sticky-header {
        display: block;
    }

    .header-logo {
        font-size: 12px;
    }

    .header-phone {
        font-size: 14px;
        padding: 8px 15px;
    }

    h1 {
        font-size: 48px;
    }

    .tagline {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .destinations-grid,
    .inventory-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .concierge-form {
        padding: 40px 30px;
    }

    .passport-stamp {
        width: 80px;
        height: 80px;
        top: 5%;
        right: 5%;
    }

    .passport-stamp-text {
        font-size: 8px;
    }

    .booked-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}