* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e4f;
    line-height: 1.6;
    background-color: #fcf9f7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

:root {
    --primary: #1e3f4d;
    --secondary: #b8a28c;
    --accent: #d4b48c;
    --light: #f9f5f0;
    --cream: #efe7de;
    --dark: #2c3e4f;
    --success: #7a9e7e;
    --shadow: 0 20px 40px -15px rgba(30, 63, 77, 0.15);
    --border-light: 1px solid rgba(184, 162, 140, 0.25);
    --remove-color: #dc3545;
}

.header-bar {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(5px);
    background-color: rgba(255,255,255,0.98);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo span {
    color: var(--secondary);
    font-weight: 400;
}

.hero {
    background: linear-gradient(135deg, #1e3f4d 0%, #2a5f6e 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.toyotacr.com/uploads/gallery/0ba2b03144e1911ab3cb105d38faaf54566d387c.jpeg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    max-width: 900px;
    text-shadow: 0 4px 25px rgba(0,0,0,0.3);
}

.hero .sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    margin: 1.5rem 0 2.5rem;
    opacity: 0.95;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    border: 1px solid var(--secondary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.trip-designer {
    background: white;
    border-radius: 40px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-top: -5rem;
    position: relative;
    z-index: 20;
    border: var(--border-light);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 300;
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
}

.section-subhead {
    font-size: 1.1rem;
    color: #6d7f8b;
    margin-bottom: 2.5rem;
    font-weight: 300;
    margin-left: 2rem;
}

#destination-container {
    margin-bottom: 1.5rem;
}

.designer-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(184, 162, 140, 0.3);
    position: relative;
}

.designer-row:last-of-type {
    border-bottom: none;
}

.location-group {
    flex: 1 1 250px;
}

.location-group label {
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    display: block;
}

.custom-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(184, 162, 140, 0.4);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background-color: white;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%231e3f4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
    cursor: pointer;
    transition: border 0.3s;
}

.custom-select:focus {
    outline: none;
    border-color: var(--secondary);
}

.add-destination-btn {
    background: none;
    border: 1px dashed var(--secondary);
    border-radius: 40px;
    padding: 0.8rem 2rem;
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 1rem 0;
    cursor: pointer;
    transition: 0.3s;
}

.add-destination-btn:hover {
    background: rgba(184, 162, 140, 0.1);
}

.remove-dest {
    background: none;
    border: 1px solid #e0d5cc;
    border-radius: 40px;
    font-size: 0.9rem;
    color: #8a7a6a;
    cursor: pointer;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.remove-dest:hover {
    background-color: #fff1f0;
    border-color: var(--remove-color);
    color: var(--remove-color);
}

.remove-dest i {
    font-size: 1rem;
}

.itinerary-preview-container {
    background: var(--cream);
    border-radius: 30px;
    padding: 1.8rem;
    margin: 1.5rem 0 2rem;
    border-left: 5px solid var(--secondary);
}

.itinerary-preview-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
}

.itinerary-preview-title i {
    color: var(--secondary);
    font-size: 1.4rem;
}

#itineraryList {
    list-style: none;
    padding: 0;
}

#itineraryList li {
    padding: 0.7rem 1rem;
    background: white;
    border-radius: 50px;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: var(--border-light);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

#itineraryList li i {
    color: var(--success);
    font-size: 1.1rem;
}

.route-badge {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-estimate-card {
    background: linear-gradient(135deg, #f6f1eb, white);
    border-radius: 30px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 2px solid var(--secondary);
    display: none;
}

.price-estimate-card.visible {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-header i {
    font-size: 2rem;
    color: var(--secondary);
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 300;
}

.price-disclaimer {
    background: rgba(184, 162, 140, 0.15);
    padding: 1rem;
    border-radius: 20px;
    font-style: italic;
    font-size: 0.95rem;
    color: #5d6f7c;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--secondary);
}

.price-table-compact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price-tier {
    flex: 1 1 300px;
    background: white;
    border-radius: 25px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: var(--border-light);
}

.price-tier .passenger-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.price-tier .passenger-count {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-tier .price-amount {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
}

.price-tier .price-sub {
    font-size: 0.8rem;
    color: #8a9aa5;
}

.extra-passenger-note {
    background: #eef2f0;
    border-radius: 20px;
    padding: 0.8rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #2c5a3e;
}

.extra-passenger-note i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.currency-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #7e8f9c;
    text-align: center;
    border-top: 1px dashed var(--border-light);
    padding-top: 1rem;
}

.service-grid {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border-radius: 35px;
    padding: 2.5rem;
    flex: 1 1 300px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: var(--border-light);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary);
}

.btn-card {
    border: 1px solid var(--secondary);
    border-radius: 40px;
    padding: 0.7rem 2rem;
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-card:hover {
    background: var(--secondary);
    color: white;
}

.about-host {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 3rem;
    margin: 4rem 0;
    border: var(--border-light);
    box-shadow: var(--shadow);
}

.host-photo-container {
    flex: 0 0 220px;
}

.host-photo-frame {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: #f0e9e0;
}

.host-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.host-text {
    flex: 1;
}

.host-text h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--secondary);
    padding-left: 1rem;
}

.host-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e4f;
}

.host-signature {
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.payment-info-section {
    background: linear-gradient(145deg, #1e3f4d, #2a5668);
    border-radius: 40px;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
    text-align: center;
    box-shadow: var(--shadow);
}

.payment-info-section h2 {
    color: white;
    font-size: 2.8rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 0.3rem;
}

.payment-info-section i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin: 1.5rem 0;
}

.payment-info-section .highlight {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 30px;
    max-width: 800px;
    margin: 2rem auto 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.payment-info-section p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-form-section {
    background: white;
    border-radius: 50px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: var(--border-light);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1 1 250px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(184,162,140,0.4);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
}

textarea.form-control {
    border-radius: 25px;
    resize: vertical;
}

.btn-whatsapp-submit {
    background: #25D366;
    border: none;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    border: 2px solid #25D366;
    transition: 0.3s;
}

.btn-whatsapp-submit:hover {
    background: white;
    color: #25D366;
}

.footer {
    background: #1e3f4d;
    color: #e0e7e9;
    padding: 3rem 0;
    border-radius: 60px 60px 0 0;
    margin-top: 4rem;
}

.footer a {
    color: var(--secondary);
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0,100,60,0.3);
    z-index: 100;
    transition: 0.2s;
    border: 3px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.exchange-note {
    font-size: 0.8rem;
    color: #8f9eaa;
    margin-top: 0.5rem;
    text-align: right;
}

@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 4rem; }
    .about-host { padding: 2.5rem; }
}

@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 3.2rem; }
    .hero .sub { font-size: 1.2rem; }
    .trip-designer { padding: 2rem; margin-top: -3rem; }
    .section-title { font-size: 2.2rem; }
    .about-host {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    .host-photo-container { flex: 0 0 180px; }
    .host-photo-frame { width: 180px; height: 180px; }
    .host-text h2 { 
        border-left: none; 
        border-bottom: 2px solid var(--secondary);
        padding-left: 0;
        padding-bottom: 0.5rem;
    }
    .payment-info-section h2 { font-size: 2.2rem; }
    .payment-info-section { padding: 2rem; }
    .contact-form-section { padding: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero .sub { font-size: 1rem; }
    .btn { padding: 0.8rem 2rem; }
    .trip-designer { padding: 1.5rem; border-radius: 30px; }
    .section-title { font-size: 1.8rem; }
    .section-subhead { margin-left: 1rem; font-size: 1rem; }
    .designer-row { gap: 0.8rem; }
    .location-group { flex: 1 1 100%; }
    .price-tier { flex: 1 1 100%; }
    .service-card { padding: 1.8rem; }
    .service-card h3 { font-size: 1.6rem; }
    .payment-info-section { border-radius: 30px; }
    .payment-info-section h2 { font-size: 1.8rem; }
    .whatsapp-float { width: 60px; height: 60px; font-size: 1.8rem; bottom: 20px; right: 20px; }
    .header-bar .container { 
        flex-direction: column; 
        gap: 0.5rem; 
    }
}

@media (max-width: 360px) {
    .hero h1 { font-size: 2rem; }
    .btn { padding: 0.7rem 1.5rem; font-size: 0.8rem; }
}