/* ============================================
   DESKTOP STYLES - FOR SCREENS 769px AND ABOVE
   All colors preserved from original design
   ============================================ */

/* Header Styles */
header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d4a373" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    max-width: 300px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.logo:hover .logo-image {
    box-shadow: 0 4px 12px rgba(244, 228, 193, 0.4);
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #f4e4c1;
    font-family: 'Georgia', 'Times New Roman', serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover, nav a.active {
    color: #f4e4c1;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1509316785289-025f5b846b35?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* To use your own images later, replace the URL above with:
   url('../images/hero-desktop.jpg')
*/

/* Fallback: If hero-desktop.jpg is not found, use Unsplash image */
/* To use online image instead, uncomment below and comment the .hero above:
.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1509316785289-025f5b846b35?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
*/

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-content .subtitle {
    font-style: italic;
    font-size: 18px;
    color: #f4e4c1;
    margin-bottom: 30px;
}

/* Experience Preview */
.experience-preview {
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.experience-preview h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 300;
}

.experience-list {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.experience-list li {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    list-style: none;
}

.experience-list li:before {
    content: "✦ ";
    margin-right: 10px;
    color: #f4e4c1;
}

/* CTA Section */
.cta-section {
    background: #2c2c2c;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 16px;
}

.contact-item a {
    color: #f4e4c1;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
}

/* Story Content */
.story-section {
    padding: 80px 20px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 36px;
    margin: 60px 0 30px;
    color: #8b4513;
    font-weight: 300;
    letter-spacing: 1px;
}

.story-content h2:first-child {
    margin-top: 0;
}

.story-content p {
    font-size: 19px;
    line-height: 2;
    margin-bottom: 25px;
    color: #444;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.skill-card {
    background: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.skill-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #8b4513;
}

.skill-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Experience Page Specific Styles */
.content-block {
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #8b4513;
    font-weight: 300;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 19px;
    line-height: 2;
    margin-bottom: 20px;
    color: #444;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background: white;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #d4a373;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8b4513;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 17px;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li:before {
    content: "• ";
    color: #d4a373;
    font-weight: bold;
    margin-right: 10px;
}

.timeline {
    max-width: 900px;
    margin: 60px auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-time {
    min-width: 150px;
    font-size: 20px;
    font-weight: bold;
    color: #8b4513;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b4513;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

.duration-options {
    background: white;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.duration-options h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8b4513;
    text-align: center;
}

.duration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.duration-card {
    border: 2px solid #d4a373;
    padding: 25px;
    text-align: center;
}

.duration-card h4 {
    font-size: 20px;
    color: #8b4513;
    margin-bottom: 15px;
}

.duration-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Page Styles */
.philosophy-box {
    background: white;
    border-left: 5px solid #8b4513;
    padding: 35px 40px;
    margin: 50px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.philosophy-box h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #8b4513;
}

.philosophy-box p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.factor-card {
    background: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid #d4a373;
}

.factor-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b4513;
}

.factor-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

.included-box,
.excluded-box {
    background: white;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.included-box h3,
.excluded-box h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #8b4513;
    text-align: center;
}

.included-grid,
.excluded-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.included-item,
.excluded-item {
    padding: 15px 20px;
    border-left: 3px solid #d4a373;
    background: #f9f7f4;
    font-size: 17px;
    color: #555;
}

.cta-box {
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Page Styles */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.safety-card {
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.safety-card h3 {
    font-size: 22px;
    margin-bottom: 0;
    padding: 30px 35px 20px;
    color: #8b4513;
    border-bottom: 3px solid #d4a373;
}

.safety-card p, .safety-card ul {
    color: #666;
    line-height: 1.7;
    font-size: 17px;
    padding: 20px 35px 30px;
    margin: 0;
}

.safety-card ul {
    margin-top: 15px;
    margin-left: 20px;
}

.safety-card li {
    margin-bottom: 10px;
}

.rules-section {
    background: white;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rules-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #8b4513;
    text-align: center;
}

.rule-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.rule-item:last-child {
    border-bottom: none;
}

.rule-number {
    font-size: 32px;
    font-weight: bold;
    color: #d4a373;
    min-width: 50px;
}

.rule-content h4 {
    font-size: 20px;
    color: #8b4513;
    margin-bottom: 10px;
}

.rule-content p {
    color: #666;
    line-height: 1.7;
}

.process-timeline {
    max-width: 900px;
    margin: 60px auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b4513;
}

.step-content p {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.contact-section {
    background: #2c2c2c;
    color: white;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
}

.contact-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f4e4c1;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-card a {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.contact-card a:hover {
    background: white;
    color: #2c2c2c;
}

/* Intro Images Grid - Desktop */
.intro-images-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    margin: 60px auto !important;
    max-width: 1000px !important;
}

.intro-image-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 500px;
}

.intro-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.intro-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.intro-image-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #8b4513;
    border-width: 3px;
}

.pricing-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pricing-header {
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 300;
}

.pricing-duration {
    font-size: 16px;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px 25px;
}

.price-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.price-section:last-of-type {
    border-bottom: 2px solid #d4a373;
    margin-bottom: 30px;
}

.price-section h4 {
    font-size: 16px;
    color: #8b4513;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-main {
    font-size: 42px;
    font-weight: bold;
    color: #8b4513;
    margin: 10px 0;
}

.price-per {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.price-additional {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.price-description {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

.pricing-includes h4 {
    font-size: 18px;
    color: #8b4513;
    margin-bottom: 15px;
}

.pricing-includes ul {
    list-style: none;
    padding: 0;
}

.pricing-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.pricing-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

/* Customization Box */
.customization-box {
    background: white;
    border: 2px solid #d4a373;
    border-radius: 8px;
    padding: 40px;
    margin: 50px 0;
}

.customization-box h3 {
    font-size: 28px;
    color: #8b4513;
    margin-bottom: 30px;
    text-align: center;
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.custom-option {
    text-align: center;
    padding: 20px;
    background: #f9f7f4;
    border-radius: 4px;
}

.custom-option h4 {
    font-size: 20px;
    color: #8b4513;
    margin-bottom: 10px;
}

.custom-price {
    font-size: 18px;
    font-weight: bold;
    color: #d4a373;
    margin: 10px 0;
}

.custom-option p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.custom-note {
    text-align: center;
    font-size: 15px;
    color: #666;
    padding: 20px;
    background: #fff3cd;
    border-radius: 4px;
}

/* Booking Form Section */
.booking-form-section {
    background: #f9f7f4;
}

.booking-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a373;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

/* Booking Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #e0e0e0;
}

.sidebar-card h4 {
    font-size: 18px;
    color: #8b4513;
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    text-align: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.contact-link {
    display: block;
    color: #8b4513;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin: 10px 0;
}

.contact-link:hover {
    color: #d4a373;
}

.small-note {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* Meeting Point */
.meeting-point-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.meeting-point-info {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.meeting-point-info h3 {
    font-size: 24px;
    color: #8b4513;
    margin-bottom: 15px;
}

.location-name {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
}

.location-details {
    margin: 25px 0;
}

.detail-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: #8b4513;
}

.btn-maps {
    background: #4285F4;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.btn-maps:hover {
    background: #357AE8;
}

.meeting-point-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* How to Reach */
.how-to-reach {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.how-to-reach h3 {
    font-size: 28px;
    color: #8b4513;
    margin-bottom: 30px;
    text-align: center;
}

.reach-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reach-option {
    padding: 25px;
    background: #f9f7f4;
    border-radius: 8px;
}

.reach-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
}

.reach-option h4 {
    font-size: 20px;
    color: #8b4513;
    margin-bottom: 15px;
    text-align: center;
}

.reach-option ul {
    list-style: none;
    padding: 0;
}

.reach-option li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.reach-option li strong {
    color: #8b4513;
}

.reach-note {
    margin-top: 15px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 4px;
    font-size: 14px;
    color: #856404;
}

/* Logistics Box */
.logistics-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logistics-box h3 {
    font-size: 28px;
    color: #8b4513;
    margin-bottom: 40px;
    text-align: center;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-step {
    text-align: center;
    padding: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.booking-step h4 {
    font-size: 16px;
    color: #8b4513;
    margin-bottom: 8px;
}

.booking-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Safety & Info Page Specific Styles */
.packing-grid, .health-grid, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.packing-card, .health-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #d4a373;
}

.packing-card h3, .health-card h3 {
    font-size: 22px;
    color: #8b4513;
    margin-bottom: 20px;
}

.packing-card ul, .health-card ul {
    list-style: none;
    padding: 0;
}

.packing-card li, .health-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.packing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.health-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a373;
    font-weight: bold;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.season-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 2px solid #e0e0e0;
    position: relative;
}

.season-card.best-season {
    border-color: #8b4513;
    border-width: 3px;
}

.season-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.season-card h3 {
    font-size: 24px;
    color: #8b4513;
    margin-bottom: 15px;
}

.temperature {
    font-size: 16px;
    font-weight: bold;
    color: #d4a373;
    margin: 10px 0 15px;
}

.season-card > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.season-card ul {
    list-style: none;
    padding: 0;
}

.season-card li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
}

.policy-box {
    background: white;
    padding: 35px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #8b4513;
}

.policy-box h3 {
    font-size: 24px;
    color: #8b4513;
    margin-bottom: 20px;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.policy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a373;
    font-weight: bold;
}

.faq-item {
    background: #f9f7f4;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #d4a373;
}

.faq-item h4 {
    font-size: 18px;
    color: #8b4513;
    margin-bottom: 12px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
}

.google-reviews-badge {
    text-align: center;
    margin: 50px auto;
    max-width: 400px;
}

.reviews-link {
    display: block;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FBBC04;
}

.reviews-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(251, 188, 4, 0.3);
}

.reviews-stars {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1;
}

.reviews-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.reviews-cta {
    font-size: 16px;
    color: #8b4513;
    margin-top: 10px;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.review-card {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #FBBC04;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-card .review-stars {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FBBC04;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 15px 0;
}

.review-author {
    font-size: 14px;
    color: #8b4513;
    font-weight: 600;
    margin-top: 15px;
}

/* Past Customer Review CTA */
.past-customer-cta {
    margin-top: 30px;
    padding: 25px;
    background: #fff3cd;
    border: 2px solid #FBBC04;
    border-radius: 8px;
    text-align: center;
}

.past-customer-cta p {
    margin: 10px 0;
    color: #555;
}

.past-customer-cta p:first-child {
    font-size: 18px;
    color: #333;
}

.btn-review-small {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #FBBC04;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-review-small:hover {
    background: #F9AB00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(251, 188, 4, 0.3);
}

/* Four Card Pricing Grid */
.pricing-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

/* Trust vs Fraudster Section */
.trust-vs-fraud-section {
    background: #f9f7f4;
    padding: 80px 20px;
}

.trust-fraud-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.trust-box {
    background: #e8f5e9;
    border: 3px solid #4caf50;
    border-radius: 12px;
    padding: 30px;
}

.trust-header {
    text-align: center;
    margin-bottom: 30px;
}

.trust-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.trust-header h3 {
    color: #2e7d32;
    font-size: 20px;
    margin: 0;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    padding: 15px 0;
    border-bottom: 1px solid #c8e6c9;
    font-size: 16px;
    line-height: 1.6;
}

.trust-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #4caf50;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

.fraud-box {
    background: #ffebee;
    border: 3px solid #f44336;
    border-radius: 12px;
    padding: 30px;
}

.fraud-header {
    text-align: center;
    margin-bottom: 30px;
}

.fraud-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.fraud-header h3 {
    color: #c62828;
    font-size: 20px;
    margin: 0;
}

.fraud-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fraud-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ffcdd2;
    font-size: 16px;
    line-height: 1.6;
}

.fraud-list li:last-child {
    border-bottom: none;
}

.cross-icon {
    color: #f44336;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

/* Booking Process Section */
.booking-process-section {
    background: white;
    padding: 80px 20px;
}

.pricing-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

/* Gallery Page Styles */
.video-gallery-section {
    background: white;
    padding: 80px 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.video-item {
    background: #f9f7f4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    max-height: 400px;
    object-fit: cover;
}

.video-caption {
    padding: 15px 20px;
    font-size: 16px;
    color: #8b4513;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.photo-gallery-section {
    background: #f9f7f4;
    padding: 80px 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Gallery Preview on Homepage */
.gallery-preview-section {
    padding: 80px 20px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px auto;
    max-width: 1200px;
}

.preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Homepage Trust Badge */
.homepage-trust-badge {
    background: #f9f7f4;
    padding: 50px 20px;
}

.trust-badge-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trust-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.trust-badge-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

.trust-badge-card.trust-card {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 3px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.trust-badge-card.fraud-card {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 3px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.badge-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.trust-badge-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.trust-badge-card.trust-card h3 {
    color: #2e7d32;
}

.trust-badge-card.fraud-card h3 {
    color: #c62828;
}

.trust-badge-card p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

/* Gallery CTA Button (after intro images) */
.gallery-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513 0%, #d4a373 100%);
    color: white;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #8b4513;
}

.gallery-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #a0522d 0%, #deb887 100%);
}

.gallery-cta-btn:active {
    transform: translateY(-1px);
}

/* Video Play Button Overlay */
.video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #8b4513;
    transition: all 0.3s ease;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-icon:hover {
    transform: scale(1.1);
    background: white;
}

.video-item video {
    cursor: pointer;
}

.video-item video::-webkit-media-controls {
    display: none !important;
}

.video-item video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Booking Form Section */
.booking-form-section {
    background: #f9f7f4;
    padding: 80px 20px;
}

.booking-form-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #d4a373;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 250px;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.isak-story {
    max-width: 900px;
    margin: 0 auto;
}

.isak-text h3 {
    color: #8b4513;
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.isak-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.difference-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.difference-item h3 {
    color: #8b4513;
    font-size: 20px;
    margin-bottom: 15px;
}

.values-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.value-item h3 {
    color: #8b4513;
    font-size: 22px;
    margin-bottom: 15px;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-intro {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-item {
    background: #f9f7f4;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.location-item h4 {
    color: #8b4513;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.contact-option {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-option h3 {
    color: #8b4513;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-link {
    display: block;
    color: #8b4513;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 10px 0;
}

.contact-link:hover {
    color: #d4a373;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form {
    width: 100%;
}

.map-container {
    margin: 40px 0;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.map-info-item {
    background: #f9f7f4;
    padding: 25px;
    border-radius: 8px;
}

.map-info-item h4 {
    color: #8b4513;
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

.faq-item h4 {
    color: #8b4513;
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}