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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.02em;
    margin: 0;
}

.logo-sun {
    color: #27ae60;
    font-style: italic;
}

.logo-tour {
    color: #2C3E50;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Raleway', sans-serif;
    pointer-events: auto;
    cursor: pointer;
}

.nav-menu a:hover {
    color: #FFC107;
}

.search-btn, .cta-btn {
    background: #FFC107;
    color: #2C3E50;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    pointer-events: auto;
    cursor: pointer;
}

.search-btn:hover, .cta-btn:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    z-index: 1100;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

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

.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);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-color: #0d1f12;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(0,0,0,0.65) 0%, rgba(39,174,96,0.25) 100%);
    pointer-events: none;
}

/* Tour Search Bar */
.tour-search-bar {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 20;
    max-width: none;
    width: auto;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-right: 1px solid #e0e0e0;
    flex: 0 0 auto;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field i {
    color: #27ae60;
    font-size: 1rem;
}

.search-select {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    outline: none;
    width: auto;
    min-width: 150px;
    font-weight: 500;
    pointer-events: auto;
}

.search-select option {
    background: white;
    color: #333;
}

.customize-btn {
    background: #f9c500;
    color: #333;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    width: auto;
    pointer-events: auto;
}

.customize-btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 197, 0, 0.4);
}

.customize-btn:disabled,
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    text-align: center;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
    text-align: center;
    line-height: 1.75;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.01em;
    pointer-events: auto;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Hero Slider Controls */
.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
    z-index: 3;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 0 0 5rem 0;
    background: #f8f9fa;
}

.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(160deg, rgba(0,0,0,0.65) 0%, rgba(39,174,96,0.25) 100%),
                url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.3), rgba(34, 153, 84, 0.3));
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}

.about-breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.about-breadcrumb a:hover { color: #f9c500; }
.about-breadcrumb i { font-size: 0.65rem; opacity: 0.7; }

.about-hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.about-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 1.1rem;
    border-left: 4px solid #27ae60;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.lead i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    opacity: 0.85;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.05rem;
}

.values {
    margin-top: 2rem;
}

.values h3 {
    color: #333;
    margin-bottom: 1rem;
}

.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.value-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    color: #27ae60;
    border: 1.5px solid #27ae60;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.value-tags span:hover {
    background: #27ae60;
    color: white;
}

.value-tags span i {
    font-size: 0.7rem;
}

/* About highlights panel */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    align-self: start;
}

.ah-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #27ae60;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ah-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39,174,96,0.13);
}

.ah-card--wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #27ae60 0%, #1a8a47 100%);
    color: white;
    border-left: none;
}

.ah-card--wide .ah-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.ah-icon {
    background: #eafaf1;
    color: #27ae60;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ah-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ah-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.ah-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ah-label--big {
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.ah-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.82);
    font-weight: 400;
}

.ah-card--wide .ah-num {
    color: white;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission, .vision {
    background: white;
    padding: 2.25rem 2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    border-top: 4px solid #27ae60;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.mission .icon, .vision .icon {
    background: #27ae60;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.mission h3, .vision h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
    transition: all 0.35s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.team-member:hover .team-image img {
    transform: scale(1.07);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.team-role {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.team-social a {
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    text-decoration: none;
}

.team-social a:hover {
    color: white;
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.4);
}

/* About CTA Strip */
.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f9fdf9, #edf7f0);
    border: 1.5px solid #c8ecd4;
    border-radius: 18px;
    padding: 2rem 2.5rem;
    margin-top: 4rem;
}

.about-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a28;
    margin-bottom: 0.35rem;
}

.about-cta-text p {
    color: #4a7a5a;
    font-size: 1rem;
    margin: 0;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-dark {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.btn-secondary-dark:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39,174,96,0.35);
}

.team-social a:hover {
    color: white;
    background: #27ae60;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(0,0,0,0.78) 0%, rgba(39,174,96,0.35) 100%);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-header {
    margin-bottom: 3.5rem;
}

.stats-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.stats-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    background: rgba(39,174,96,0.18);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    border-color: rgba(39,174,96,0.5);
}

.stat-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #27ae60, #1a8a47);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 24px rgba(39,174,96,0.45);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

.stat-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Services Section */
.services {
    padding: 0 0 5rem 0;
}

.services-hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.65) 0%, rgba(39, 174, 96, 0.2) 100%),
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.3), rgba(34, 153, 84, 0.3));
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.services-hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.services-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.services-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.services-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.services-breadcrumb a:hover {
    color: #fff;
}

.services-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.section-header {
    text-align: center;
    margin-top: 4.5rem;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 200px;
    border-left: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
    border-left-color: #27ae60;
}

.service-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #27ae60, #229954);
    backdrop-filter: blur(4px);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.45);
}

.service-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: #555;
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 0.85rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.1rem;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, gap 0.2s, color 0.2s;
    align-self: flex-start;
}

.service-link:hover {
    border-bottom-color: #27ae60;
    gap: 0.65rem;
    color: #229954;
}

/* Services CTA strip */
.services-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #1a8a47 100%);
    border-radius: 20px;
    padding: 2.75rem 3.5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.35);
}

.services-cta-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.services-cta-icon {
    font-size: 2.8rem;
    opacity: 0.85;
    flex-shrink: 0;
}

.services-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.services-cta p {
    font-size: 1rem;
    opacity: 0.88;
    margin: 0;
}

.services-cta .btn-primary {
    background: white;
    color: #27ae60;
    border: none;
    white-space: nowrap;
    margin-left: auto;
    font-weight: 700;
}

.services-cta .btn-primary:hover {
    background: #f0faf4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.package-card.featured {
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.2);
    background: linear-gradient(145deg, #ffffff, #fefefe);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(39, 174, 96, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-family: 'Crimson Text', serif;
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.package-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.package-features span {
    background: #e8f5e8;
    color: #27ae60;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.package-features i {
    margin-right: 0.25rem;
}

.packages-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.stars {
    color: #f39c12;
    font-size: 1.5rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem 2rem 2rem 2.25rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #27ae60;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #27ae60;
    font-family: Georgia, serif;
}

.testimonial-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: #333;
    font-size: 1.1rem;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 0 0 5rem 0;
    background: #f8f9fa;
}

.contact-hero {
    position: relative;
    height: 52vh;
    min-height: 420px;
    background: linear-gradient(160deg, rgba(0,0,0,0.68) 0%, rgba(39,174,96,0.22) 100%),
                url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent;
    pointer-events: none;
}

.contact-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.contact-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-breadcrumb a:hover { color: #fff; }
.contact-breadcrumb i { font-size: 0.68rem; opacity: 0.65; }

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.contact-hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

.contact-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2,
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.contact-info > p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: white;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    border-left: 4px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-item:hover {
    border-left-color: #27ae60;
    box-shadow: 0 8px 24px rgba(39,174,96,0.12);
    transform: translateX(4px);
}

.contact-icon {
    background: linear-gradient(135deg, #27ae60, #1a8a47);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(39,174,96,0.35);
}

.contact-item h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.contact-item p,
.contact-item-body p {
    color: #555;
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
}

.contact-item a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover { text-decoration: underline; }

.contact-social-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    transition: all 0.25s ease;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.social-links a:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(39,174,96,0.35);
}

.contact-form {
    background: white;
    padding: 0;
    border-radius: 18px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 4px solid #27ae60;
}

.contact-form-header {
    padding: 1.75rem 2rem 0;
}

.contact-form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.contact-form-header p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.contact-form form {
    padding: 0 2rem 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-icon-group .form-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.form-icon-group input,
.form-icon-group select {
    padding-left: 2.75rem !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;

    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #27ae60;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.13);
}

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

.contact-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    border-radius: 12px;
    letter-spacing: 0.02em;
}

/* Book Now Section */
.book-now {
    padding: 3rem 0;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-align: center;
}

.book-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.book-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.book-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.book-buttons .btn-primary {
    background: white;
    color: #27ae60;
}

.book-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.book-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Packages CTA override - light background context */
.packages-cta .btn-secondary {
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.packages-cta .btn-secondary:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
}

/* Footer */
.footer {
    background: #1a2332;
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    z-index: 10;
    border-top: 4px solid #27ae60;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Raleway', sans-serif;
    color: #27ae60;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #27ae60;
    border-radius: 2px;
}

.footer-section p {
    color: #a0aab4;
    line-height: 1.8;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aab4;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section ul li a::before {
    content: '›';
    color: #27ae60;
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    background: rgba(255,255,255,0.07);
    color: #a0aab4;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(39,174,96,0.35);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: #a0aab4;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.footer-contact i {
    color: #27ae60;
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
    color: #6b7a8d;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    background: #27ae60;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    pointer-events: auto;
}

.chat-button:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.chat-button i {
    font-size: 1.2rem;
}

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

.customize-modal {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

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

.customize-modal h2 {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 2rem;
    margin: 0;
    border-radius: 8px 8px 0 0;
    font-size: 1.8rem;
    flex-shrink: 0;
    position: relative;
}

.modal-subtitle {
    padding: 0 2rem;
    margin: 1.5rem 0;
    color: #666;
    font-size: 1rem;
    flex-shrink: 0;
}

.close-modal {
    color: white;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    pointer-events: auto;
    z-index: 10001;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.close-modal:hover,
.close-modal:focus {
    opacity: 1;
    transform: scale(1.1);
}

.customize-form {
    padding: 0 2rem 2rem;
    overflow-y: auto;
    flex: 1;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #27ae60;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

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

.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    pointer-events: auto;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 2rem;
    }

    .contact-content {
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .services-hero {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 0;
    }
    
    .services-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-left: none;
        border-top: 4px solid transparent;
    }

    .service-card:hover {
        border-left-color: transparent;
        border-top-color: #27ae60;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        top: 0.75rem;
        left: 0.75rem;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }

    .services-cta {
        padding: 2rem 1.75rem;
    }

    .services-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .services-cta .btn-primary {
        margin-left: 0;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .customize-modal {
        width: 95%;
        margin: 5% auto;
    }
    
    .customize-modal h2 {
        font-size: 1.4rem;
        padding: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .customize-form {
        padding: 0 1.5rem 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    /* Hide the desktop Book Now pill on mobile - it's accessible via the nav menu */
    .nav-container > .search-btn,
    .nav-container > .cta-btn {
        display: none;
    }

    /* Keep logo on one line at mobile */
    .nav-logo h2 {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 170px;
    }

    .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;
        z-index: 999;
    }

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

    .tour-search-bar {
        flex-direction: column;
        border-radius: 8px;
        padding: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
        bottom: 1rem;
        gap: 0.75rem;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 0.75rem;
        width: 100%;
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .search-select {
        width: 100%;
        min-width: auto;
        font-size: 0.95rem;
    }

    .search-btn,
    .customize-btn {
        width: 100%;
        padding: 0.85rem;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .slider-controls {
        gap: 1.5rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-section ul {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stats-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-icon-circle {
        width: 140px;
        height: 140px;
    }

    .stat-icon {
        width: 80px;
        height: 80px;
    }

    .stat-icon i {
        font-size: 2rem;
    }

    .hero-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .about-hero {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 3rem;
    }
    
    .about-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }

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

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .ah-card--wide {
        grid-column: span 2;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 0;
    }
    
    .contact-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }

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

    .contact-form-header,
    .contact-form form {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .package-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .package-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .package-features span {
        width: 100%;
    }

    .book-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .book-buttons .btn-primary,
    .book-buttons .btn-secondary {
        width: 100%;
        min-height: 48px;
    }

    .chat-button {
        width: 60px;
        height: 60px;
        padding: 0;
    }

    .chat-button span {
        display: none;
    }

    .chat-button i {
        font-size: 1.5rem;
    }

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

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero {
        height: 100vh;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

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

    /* iOS: disable fixed background attachment (causes rendering bugs on iOS Safari) */
    .stats-section {
        background-attachment: scroll;
    }

    /* iOS: prevent auto-zoom on focused form inputs (requires min font-size 16px) */
    input,
    select,
    textarea {
        font-size: 16px;
    }

    /* Nav container height and padding on mobile */
    .nav-container {
        padding: 0 1rem;
        height: 65px;
    }

    .nav-menu {
        top: 65px;
    }

    /* About CTA strip - stack vertically */
    .about-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .about-cta-buttons {
        justify-content: center;
    }

    /* Book now section */
    .book-content h2 {
        font-size: 2rem;
    }

    .book-content p {
        font-size: 1rem;
    }

    /* Package card padding */
    .package-content {
        padding: 1.25rem;
    }

    /* Slider dots above search bar */
    .slider-dots {
        bottom: auto;
        top: auto;
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 1rem;
        display: none;
    }

    /* Slider controls smaller on mobile */
    .slider-controls {
        padding: 0 0.5rem;
    }

    /* Section header padding */
    .section-header {
        padding: 0 1rem;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        font-weight: 400;
    }

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .about-hero-content h2,
    .services-hero-content h2,
    .contact-hero-content h2 {
        font-size: 2rem;
    }

    .about-hero-content p,
    .services-hero-content p,
    .contact-hero-content p {
        font-size: 1rem;
    }

    .about-text h2,
    .about-text h3 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .contact-info h2,
    .contact-info h3 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .book-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .nav-logo h2 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .tour-search-bar {
        padding: 0.75rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-list li {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .value-tags span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Stats grid: single column on small phones */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-section {
        padding: 3rem 0;
    }

    /* Contact items: prevent horizontal overflow */
    .contact-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-item:hover {
        transform: none;
    }

    /* Tighter footer on small screens */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    /* About highlights: single column */
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .ah-card--wide {
        grid-column: span 1;
    }

    /* Package grid always single column */
    .packages-grid {
        grid-template-columns: 1fr;
    }

    /* Chat widget tighter on small screens */
    .chat-widget {
        bottom: 1rem;
        right: 1rem;
    }
}

/* Extra-small phones (360px and below) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

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

    .btn-primary,
    .btn-secondary,
    .search-btn,
    .customize-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }

    .package-content h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 12px;
    }

    .contact-form form {
        padding: 0 1rem 1rem;
    }

    .contact-form-header {
        padding: 1.25rem 1rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.hidden {
    display: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}
