/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background-color: #000000;
}

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

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none; /* Force hide by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffd700;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #000000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #000000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo i {
    font-size: 1.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Menu */
.hamburger-menu {
    position: relative;
    z-index: 1001;
    display: block !important;
}

.hamburger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: #ffd700;
    border: 1px solid #000000;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.hamburger:hover {
    background: #ffed4e;
    border-color: #000000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger:hover span {
    background: #000000;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000000;
    border: 2px solid #ffd700;
    border-radius: 10px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #333;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: #ffd700;
    color: #000000;
}

.mobile-menu i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-right {
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .nav-email-btn {
        margin-left: 0.5rem;
    }
    
    .language-selector {
        margin-left: 0.5rem;
    }
    
    .hamburger-menu {
        margin-left: 0.5rem;
        position: relative;
        z-index: 1001;
    }
    
    .hamburger {
        padding: 8px;
        position: relative;
        z-index: 1002;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .mobile-menu {
        min-width: 200px;
    }
}

/* Ensure hamburger menu is always visible */
.hamburger-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-email-btn {
    margin-left: 2rem;
}

.nav-email-btn .btn {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-email-btn .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.nav-email-btn .btn i {
    font-size: 1rem;
}

.language-selector {
    margin-left: 20px;
}

.lang-select {
    background: #000000;
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.lang-select:hover {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.lang-select:focus {
    outline: none;
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.lang-select option {
    background: #000000;
    color: #ffd700;
    padding: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

.hero::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    color: #ffd700;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}



.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5530;
    color: white;
}

.btn-primary:hover {
    background: #1e3a23;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 8px solid #333;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.phone-screen:hover img {
    transform: scale(1.05);
}

/* Rolling Images for Phone */
.rolling-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-app-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-app-image.active {
    opacity: 1;
}

/* Tour Rotating Images */
.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-rotating-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.tour-rotating-image.active {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #ffd700;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.drone-icon {
    width: 3.5rem;
    height: 3.5rem;
    filter: brightness(0) saturate(100%) invert(1);
    transition: transform 0.3s ease;
    transform: rotate(45deg);
}

.feature-card:hover .drone-icon {
    transform: rotate(45deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #000000;
    line-height: 1.6;
}

/* Tours Section */
.tours {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: #ffd700;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.tour-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.tour-rotating-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}

.tour-rotating-image {
    opacity: 0;
}

.tour-rotating-image.active {
    opacity: 1;
}

/* Read More Button Styles */
.read-more-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto;
    width: fit-content;
    min-width: 140px;
}

.read-more-btn:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.read-more-btn.active {
    background: #ffd700;
    color: #000000;
}

.read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

/* Tour Description Container */
.tour-description-container {
    position: relative;
    margin-bottom: 20px;
}

.tour-description-short {
    display: block;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tour-description-full {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    line-height: 1.6;
    color: #000000;
    white-space: pre-line;
}



.tour-description-full.show {
    display: block;
}

.tour-poi-list {
    display: block;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.tour-poi-list.show {
    display: block;
}

.tour-poi-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-poi-list li {
    margin: 8px 0;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    position: relative;
    padding-left: 20px;
}

.tour-poi-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.tour-poi-list li strong {
    color: #000000;
}

.tour-poi-list i {
    color: #000000;
    width: 16px;
}

.tour-poi-list .duration-item {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-weight: 600;
    color: #ffd700;
}

.tour-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 85, 48, 0.3), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover .tour-image::before {
    opacity: 1;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.6s ease-in-out;
}

.tour-rotating-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.tour-rotating-image:first-child {
    opacity: 1;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.tour-content p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tour-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-duration {
    background: #e8f5e8;
    color: #2c5530;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}



.booking-options {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.booking-options .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 15px;
}

.booking-options .btn-primary {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
}

.booking-options .btn-primary:hover {
    background: #e6c200;
    border-color: #e6c200;
}

.booking-options .btn-outline {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.booking-options .btn-outline:hover {
    background: #ffd700;
    color: #000000;
}

/* Floating Get in Touch Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-contact-btn .btn {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.floating-contact-btn .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.floating-contact-btn .btn i {
    font-size: 1.2rem;
}

.floating-contact-btn .btn-text {
    white-space: nowrap;
}

/* Hide text on mobile, show only icon */
@media (max-width: 768px) {
    .floating-contact-btn .btn-text {
        display: none;
    }
    
    .floating-contact-btn .btn {
        padding: 15px;
        border-radius: 50%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #ffffff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.modal h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.modal p {
    color: #666;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Tour card layout with price at bottom */
.tour-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-price-section {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-price-section span {
    font-weight: 700;
    color: #000000;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.tour-price-section .btn {
    flex-shrink: 0;
}

.walk-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.walk-price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

.walk-price .btn {
    flex-shrink: 0;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.tour-features span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}



/* About Section */
.about {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="black" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-features {
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Download buttons removed - app not ready yet */

.about-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-car-image:hover {
    transform: scale(1.02);
}

/* Walking Tours Section */
.walks {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

.walks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.walk-card {
    background: #ffd700;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.walk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.walk-card h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
}

.walk-route {
    color: #000000;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #000000;
}

.walk-stops {
    margin-bottom: 1.5rem;
}

.walk-stop {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 0.95rem;
}

.walk-stop:last-child {
    border-bottom: none;
}

.walk-summary {
    background: #ffffff;
    padding: 15px;
    border-radius: 25px;
    text-align: center;
    color: #000000;
    font-weight: 600;
}

/* Build Your Own Tour Section */
.build-tour {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
    color: #ffffff;
}

.tour-builder {
    margin-top: 2rem;
}

.builder-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 0 30px;
}

.builder-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.builder-header h2 {
    font-size: 1.4rem;
    margin: 0;
    color: #ffd700;
}

.builder-pill {
    font-size: 0.8rem;
    color: #000000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.builder-card {
    background: #ffd700;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 18px;
}

.builder-card.full-width {
    grid-column: 1 / -1;
}

.builder-card h3 {
    margin: 0;
    padding: 18px 18px 0;
    color: #000000;
    font-size: 1.3rem;
}

.builder-body {
    padding: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
}

.form-col-12 { grid-column: span 12; }
.form-col-6 { grid-column: span 6; }
.form-col-4 { grid-column: span 4; }
.form-col-3 { grid-column: span 3; }

.form-row label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 12px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.form-row textarea {
    min-height: 90px;
    resize: vertical;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease;
    font-size: 0.9rem;
}

.chip[aria-pressed="true"] {
    background: #000000;
    border-color: #000000;
    color: #ffd700;
    box-shadow: 0 0 0 1px #000000 inset;
}

.chip:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

.chip:active {
    transform: scale(0.98);
}

.subtle {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
}

.builder-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.poi-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.poi {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.poi:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.poi h4 {
    margin: 0 0 6px 0;
    color: #000000;
    font-size: 1rem;
}

.poi .tagz {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #000000;
    color: #000000;
}

.tag-chip {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffd700;
    border: 1px solid #000000;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 4px;
    margin-bottom: 4px;
}

.tag-chip:hover {
    background: #e6c200;
    transform: scale(1.05);
}

.tag-chip.selected {
    background: #000000;
    color: #ffd700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch input {
    width: auto;
}

pre {
    background: rgba(0, 0, 0, 0.1);
    border: 1px dashed #000000;
    padding: 12px;
    border-radius: 12px;
    overflow: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    max-height: 300px;
}

.ok {
    color: #65d69a;
}

.warn {
    color: #ffb86b;
}

.tour-summary {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    color: #000000;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 120px;
}

.tour-summary h4 {
    color: #000000;
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.tour-summary ul {
    margin: 10px 0;
    padding-left: 20px;
}

.tour-summary li {
    margin-bottom: 8px;
    color: #000000;
}

.tour-summary .highlight {
    font-weight: 600;
    color: #000000;
}

.tour-summary .section {
    margin-bottom: 20px;
}

.tour-summary .section-title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 5px;
}

@media (max-width: 900px) {
    .builder-grid {
        grid-template-columns: 1fr;
    }
    
    .form-col-6,
    .form-col-4,
    .form-col-3 {
        grid-column: span 12;
    }
    
    .poi-list {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffd700;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #000000;
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #000000;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: inherit;
}

.contact-form {
    background: #ffd700;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact form button styling */
.contact-form .btn-primary {
    background: #000000;
    color: #ffd700;
    border: 2px solid #000000;
}

.contact-form .btn-primary:hover {
    background: #333333;
    color: #ffd700;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Review form button styling - yellow background */
.review-form .btn-primary {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
}

.review-form .btn-primary:hover {
    background: #e6c200;
    color: #000000;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Tour booking buttons styling - black with gold text */
.booking-options .btn-primary,
.tour-details .btn-primary,
.tour-price-section .btn-primary,
.walk-price .btn-primary {
    background: #000000;
    color: #ffd700;
    border: 2px solid #000000;
}

.booking-options .btn-primary:hover,
.tour-details .btn-primary:hover,
.tour-price-section .btn-primary:hover,
.walk-price .btn-primary:hover {
    background: #333333;
    color: #ffd700;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Tour price section styling */
.tour-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.tour-details .btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-details .btn-outline:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Layout adjustments for inline price and button */
.tour-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.walk-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #ffffff;
    color: #000000;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

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

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
}

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

.review-card {
    background: #111111;
    padding: 2rem;
    border: 2px solid #333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
}

.review-form-section {
    background: #111111;
    padding: 2rem;
    border: 2px solid #ffd700;
    border-radius: 15px;
    margin-top: 2rem;
}

.review-form-section h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.review-form-section p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-input label {
    color: #ffffff;
    font-weight: 600;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
}

/* Footer */
.footer {
    background: #ffd700;
    color: #000000;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-section a:hover {
    color: #000000;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

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

/* Build Your Own Tour Section */
.build-tour {
    padding: 100px 0;
    background: #000000;
    border: 2px solid #ffd700;
    margin: 20px;
    border-radius: 15px;
    color: #ffffff;
}

.tour-builder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.builder-form {
    background: #111111;
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

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

.vibe-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vibe-chip {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.vibe-chip:hover {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
}

.vibe-chip.selected {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.form-actions .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.form-actions .btn.btn-secondary {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #333;
}

.form-actions .btn.btn-secondary:hover {
    background: #333;
    border-color: #ffd700;
    color: #ffd700;
}

.builder-results {
    background: #111111;
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
}

.builder-results h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.poi-list {
    min-height: 200px;
}

.poi-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poi-info h4 {
    color: #ffd700;
    margin: 0 0 0.5rem 0;
}

.poi-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.poi-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.poi-tag {
    background: #333;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.poi-select {
    background: #1a1a1a;
    border: 2px solid #333;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.poi-select:hover {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.poi-select.selected {
    background: #ffd700;
    color: #000000;
    border-color: #ffd700;
}

.hint {
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

.ai-brief {
    background: #111111;
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
}

.ai-brief h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.brief-output {
    margin-bottom: 1.5rem;
}

.brief-output label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 600;
}

.brief-output pre {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 150px;
    overflow-y: auto;
}

.brief-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brief-actions .btn {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.brief-actions .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.brief-actions .btn.btn-secondary {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #333;
}

.brief-actions .btn.btn-secondary:hover {
    background: #333;
    border-color: #ffd700;
    color: #ffd700;
}

.brief-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .tour-builder {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions,
    .brief-actions {
        flex-direction: column;
    }
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 60px;
    background: #000000;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffd700;
    border-radius: 15px;
    color: #000000;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.last-updated {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #111111;
    border: 2px solid #ffd700;
    border-radius: 15px;
    color: #ffffff;
}

.legal-section h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ffd700;
    padding-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
}

.legal-footer .btn {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.legal-footer .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .walks-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-email-btn {
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
    }
    
    .nav-email-btn .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .build-tour-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Download buttons removed - app not ready yet */
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .download-buttons,
    .contact-form,
    .footer {
        display: none;
    }
}

/* Mobile-specific hamburger menu improvements */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: calc(100vw - 20px);
        z-index: 9999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .hamburger-menu {
        z-index: 10000;
    }
    
    .hamburger {
        z-index: 10001;
    }
}

/* Tour Description Sliding Animation */
.tour-description-container {
    position: relative;
    overflow: hidden;
}

.tour-description-short {
    display: block;
    line-height: 1.6;
    margin-bottom: 1rem;
}



.read-more-btn {
    background: rgba(255, 215, 0, 0.3);
    color: #000000;
    border: 2px solid #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 1rem auto 0;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(5px);
    text-shadow: none;
    width: fit-content;
}

.read-more-btn:hover {
    background: rgba(255, 215, 0, 0.5);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
}

.read-more-btn.expanded {
    background: rgba(255, 215, 0, 0.5);
    color: #000000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
}

.read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 10px;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}



/* Mobile hamburger menu */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block !important;
        position: relative;
        z-index: 1001;
        margin-left: 10px;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
        background: #ffd700;
        border-radius: 5px;
        border: 2px solid #000000;
        position: relative;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #000000;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu li {
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .mobile-menu a {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        gap: 10px;
    }
    
    .mobile-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #ffd700;
        transform: translateX(5px);
    }
    
    .mobile-menu i {
        width: 20px;
        text-align: center;
        color: #ffd700;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-right {
        gap: 0.3rem;
    }
    
    .nav-email-btn {
        display: none;
    }
    
    .language-selector {
        margin-left: 0.3rem;
    }
    
    .hamburger-menu {
        margin-left: 0.3rem;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
    }
}

/* Back button container for sub-pages */
.back-button-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-button-container .btn {
    background: #ffd700;
    color: #000000;
    border: 2px solid #ffd700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.back-button-container .btn:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.back-button-container .btn.btn-secondary {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #333;
}

.back-button-container .btn.btn-secondary:hover {
    background: #333;
    border-color: #ffd700;
    color: #ffd700;
}

.back-button-container .language-selector {
    margin-left: 0;
}

/* Build tour page specific styles */
.build-tour {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.build-tour .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.build-tour .section-header h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.build-tour .section-header p {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Build tour CTA section */
.build-tour-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-content h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.cta-feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Yellow button for build tour CTA */
.build-tour-cta .btn-primary {
    background: #ffd700 !important;
    color: #000000 !important;
    border-color: #ffd700 !important;
}

.build-tour-cta .btn-primary:hover {
    background: #e6c200 !important;
    border-color: #e6c200 !important;
    color: #000000 !important;
}

