/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    margin: 20px auto;
    border-radius: 2px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #27ae60;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #27ae60;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Hero Section with Background Image */
.hero {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-with-bg {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    justify-items: center;
}

.hero-content {
    max-width: 760px;
    padding: 10px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.75);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.6);
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-stats {
    display: grid;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Why Us Section */
.why-us {
    background: white;
}

.stat-jump {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px dashed transparent;
    transition: all 0.25s ease;
}

.stat-jump:hover {
    color: #1f8d4d;
    border-bottom-color: #1f8d4d;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    background: white;
    border-color: #27ae60;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Travel Options Section (Corporate & Individual) */
.travel-options {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 100px 0;
}

.travel-options .section-header h2,
.travel-options .section-header p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.travel-options .section-divider {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.option-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.option-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.option-card.corporate .option-icon {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.option-card.visa-support .option-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.option-card.individual .option-badge {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.option-card.visa-support .option-badge {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.option-card:hover .option-icon {
    transform: scale(1.1) rotate(5deg);
}

.option-icon i {
    font-size: 3rem;
    color: white;
}

.option-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.option-card > p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
    min-height: 3.4em;
}

.option-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    flex: 1 1 auto;
}

.option-features li {
    padding: 12px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features i {
    color: #27ae60;
    font-size: 1.1rem;
}

.option-btn {
    width: 100%;
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.option-card.corporate .option-btn {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.option-card.visa-support .option-btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.option-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(86, 171, 47, 0.4);
}

.option-card.corporate .option-btn:hover {
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

.option-card.visa-support .option-btn:hover {
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.4);
}

/* Adventure Tours Section (from Version 2) */
.tours {
    background: #f8f9fa;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.adventure-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-header {
    position: relative;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.adventure-card:hover .card-header img {
    transform: scale(1.1);
}

.difficulty-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.35);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f8f5;
    color: #27ae60;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tour-category i {
    font-size: 1rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tour-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 3.2em;
}

.tour-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
}

.detail-item i {
    color: #27ae60;
    font-size: 1rem;
}

.adventure-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.adventure-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

/* Request Form Section (Corporate Style) */
.request-form {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 100px 0;
}

.request-form .section-header h2,
.request-form .section-header p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.request-form .section-divider {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.info-points {
    display: grid;
    gap: 25px;
}

.info-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 1.3rem;
    color: white;
}

.point-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.point-content p {
    color: #666;
    line-height: 1.6;
}

.corporate-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-section {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #11998e;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #11998e;
    background: white;
    box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.1);
}

/* Travel Type Selector */
.travel-type-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.type-option {
    cursor: pointer;
}

.type-option input[type="radio"] {
    display: none;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border: 3px solid #e0e6ed;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    gap: 8px;
}

.type-card i {
    font-size: 2.5rem;
    color: #999;
    transition: all 0.3s ease;
}

.type-card strong {
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
}

.type-card small {
    font-size: 0.85rem;
    color: #666;
}

.type-option input[type="radio"]:checked + .type-card {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-color: #11998e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

.type-option input[type="radio"]:checked + .type-card i,
.type-option input[type="radio"]:checked + .type-card strong,
.type-option input[type="radio"]:checked + .type-card small {
    color: white;
}

.type-card:hover {
    border-color: #11998e;
    transform: translateY(-2px);
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.6);
}

.form-submit-btn i {
    font-size: 1.3rem;
}

/* Gallery Section - Chaotic Structure with 9 Images */
.gallery {
    background: #f8f9fa;
}

.gallery-chaotic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 300px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Chaotic layout - different sizes but fills all space */
.gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.gallery-item:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* Bottom row - last 3 items aligned */
.gallery-item:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.gallery-item:nth-child(8) {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
}

.gallery-item:nth-child(9) {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-title {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 12;
    background: rgba(0, 0, 0, 0.58);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.9), rgba(46, 204, 113, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 11;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
}

.testimonial-slider {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-track {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-height: 260px;
}

.testimonial-card {
    display: none;
    background: #f8f9fa;
    border: 1px solid #e7ecef;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comment-text {
    color: #38424d;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.testimonial-card h4 {
    color: #1f8d4d;
    font-weight: 700;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d7efe1;
}

.slider-btn {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transition: all 0.2s ease;
}

.slider-btn:hover {
    transform: scale(1.06);
}

.slider-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #c8d1d9;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #27ae60;
}

/* Contact Section (from Version 2) */
.contact {
    background: white;
}

.contact-nature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-nature {
    display: grid;
    gap: 25px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    background: white;
    border-color: #27ae60;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    margin-bottom: 5px;
}

.card-content small {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.social-nature {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.social-nature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.tiktok {
    background: #000;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.youtube {
    background: #ff0000;
}

.map-container-nature {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.map-header i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f7a3b 0%, #27ae60 45%, #2ecc71 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #eafff1;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.whatsapp-label {
    background: rgba(37, 211, 102, 0.95);
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
    position: relative;
    white-space: nowrap;
}

.whatsapp-label::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px 7px 0 7px;
    border-style: solid;
    border-color: rgba(37, 211, 102, 0.95) transparent transparent transparent;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.5rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-chaotic {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-with-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 15px 0 25px;
    }
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat {
        padding: 20px 15px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .travel-type-selector {
        grid-template-columns: 1fr;
    }

    .gallery-chaotic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-nature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        gap: 10px;
    }

    .testimonial-track {
        grid-template-columns: 1fr;
        min-height: 300px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 70px;
        right: 30px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.3rem;
    }

    .whatsapp-label {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 565px) {
    .contact-card .card-content {
        padding: 0;
    }
    .card-icon {
        width: 35px;
        height: 35px;
    }
    .corporate-form {
        padding: 20px;
    }
    .form-info {
        padding: 20px;
    }
    .adventure-card .card-content {
        padding: 15px;
    }
    .option-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .gallery-chaotic {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .feature {
        padding: 30px 20px;
    }

    .option-card {
        padding: 40px 25px;
    }

    .tour-details {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Offset for Fixed Header */
section {
    scroll-margin-top: 80px;
}
