/* ==================== */
/* BASE & RESET STYLES */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #2e8b57;
    transition: color 0.3s;
}

a:hover {
    color: #d34d42;
}

ul {
    list-style: none;
}

/* ============= */
/* TYPOGRAPHY */
/* ============= */
h1, h2, h3, h4 {
    color: #2e8b57;
    margin-bottom: 15px;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.font-bold {
    font-weight: 700;
}

/* ============= */
/* COLOR CLASSES */
/* ============= */
.bg-coral { background-color: #d34d42; }
.bg-mint { background-color: #A3D9B1; }
.bg-gold { background-color: #F9C74F; }
.bg-forest { background-color: #2e8b57; }

.text-coral { color: #d34d42; }
.text-mint { color: #A3D9B1; }
.text-gold { color: #F9C74F; }
.text-forest { color: #2e8b57; }

.border-coral { border-color: #d34d42; }
.border-mint { border-color: #A3D9B1; }
.border-gold { border-color: #F9C74F; }
.border-forest { border-color: #2e8b57; }

/* ============= */
/* COMPONENTS */
/* ============= */

/* HEADER */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #d34d42;
    font-size: 1.8rem;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    vertical-align: middle;
}

.logo i {
    color: #F9C74F;
    margin-right: 10px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d34d42;
}

nav ul li a.highlight {
    color: #d34d42;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #d34d42;
    color: #fff;
}

.btn-primary:hover {
    background-color: #E05A4F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #2e8b57;
    color: #fff;
    padding: 8px 20px;
    border-radius: 1ch;
}

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

/* CARDS */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.feature-box, 
.team-member,
.package-card {
    @extend .card;
    padding: 30px;
    margin-bottom: 20px;
}

.feature-box {
    flex: 0 0 30%;
    text-align: center;
    background-color: #e0e0e0;
}

.team-member {
    text-align: center;
    flex: 0 0 250px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #d34d42;
}

.package-card {
    padding: 0;
}

.package-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-content {
    padding: 20px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/sri-lanka-banner.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.features {
    background-color: #fff;
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-box i {
    font-size: 2.5rem;
    color: #d34d42;
    margin-bottom: 20px;
}

.about-section {
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text ul {
    margin: 20px 0;
}

.about-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-text ul li:before {
    content: "✓";
    color: #d34d42;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-section {
    background-color: #f0f8f4;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.packages-section {
    background-color: #fff;
}

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

.package-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #7f8c8d;
}

.package-details span {
    display: flex;
    align-items: center;
}

.package-details i {
    margin-right: 5px;
    color: #F9C74F;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d34d42;
}

.special-offers {
    background-color: #d34d42;
    color: #fff;
    text-align: center;
}

.offer-banner {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.offer-banner h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.offer-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.offer-banner .btn-primary {
    background-color: #fff;
    color: #d34d42;
}

.offer-banner .btn-primary:hover {
    background-color: #f0f8f4;
}

.feedback-section {
    background-color: #fff;
}

.feedback-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box {
    text-align: center;
    background-color: #f0f8f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #d34d42;
    margin-bottom: 10px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feedback-card {
    background-color: #f0f8f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feedback-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feedback-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.rating i {
    color: #F9C74F;
}

.date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.gallery-section {
    background-color: #fff;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background-color: #f0f8f4;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background-color: #d34d42;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

.contact-section {
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #f0f8f4;
    padding: 30px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #d34d42;
    margin-right: 20px;
    min-width: 30px;
}

.social-media {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #d34d42;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: #E05A4F;
}

.map-container {
    margin-top: 50px;
}

.map-placeholder {
    background-color: #f0f8f4;
    background-image: url("../images/map.jpg");
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    color: #7f8c8d;
}

footer {
    background-color: #2e8b57;
    color: #ecf0f1;
    text-align: center;
    padding: 30px 0;
}

/* ==================== */
/* FORM STYLES */
/* ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2e8b57;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d34d42;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.full-width {
    flex: 0 0 100%;
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-container label {
    line-height: 1.5;
    color: #555;
}

.checkbox-container a {
    color: #d34d42;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-container a:hover {
    color: #E05A4F;
    text-decoration: none;
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== */
/* VISA SPECIFIC STYLES */
/* ==================== */
.visa-section {
    padding: 80px 0;
    background-color: #fff;
}

.visa-process-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 800px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    color: #7f8c8d;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step.active span {
    background-color: #2e8b57;
    color: #fff;
}

.step.active p {
    color: #2e8b57;
    font-weight: 500;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 70%;
    width: 60%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: -1;
}

.visa-form-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.visa-form {
    flex: 2;
    background-color: #f0f8f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visa-info {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.requirements-list {
    margin: 20px 0;
    padding-left: 0;
}

.requirements-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.requirements-list li::before {
    content: "•";
    color: #d34d42;
    position: absolute;
    left: 10px;
    font-weight: bold;
}

.processing-time,
.contact-support {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Schengen Visa Specific */
.schengen-flag {
    height: 20px;
    width: 30px;
    display: inline-block;
    background: linear-gradient(to bottom, 
        #003399 0%, #003399 33.33%,
        #ffffff 33.33%, #ffffff 66.66%,
        #FF0000 66.66%, #FF0000 100%);
    margin-right: 10px;
    vertical-align: middle;
    border: 1px solid #ddd;
}

/* ==================== */
/* RESPONSIVE STYLES */
/* ==================== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .features .container,
    .contact-container {
        flex-direction: column;
    }
    
    .feature-box {
        flex: 1;
    }
    
    .stat-box {
        flex: 1 1 100%;
    }
    
    .visa-process-steps {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .visa-form-container {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .packages-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .visa-section {
        padding: 50px 0;
    }
    
    .visa-form,
    .visa-info {
        padding: 20px;
    }
}

/* ==================== */
/* PACKAGE DETAIL STYLES */
/* ==================== */

.package-detail-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 50px;
}

.package-highlights {
    background-color: #f0f8f4;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.package-highlights h3,
.package-itinerary h3,
.package-includes h3 {
    color: #2e8b57;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.package-highlights h3::after,
.package-itinerary h3::after,
.package-includes h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #d34d42;
}

.package-highlights ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.package-highlights li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #555;
    line-height: 1.6;
}

.package-highlights i {
    color: #d34d42;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.package-itinerary {
    margin: 40px 0;
}

.itinerary-day {
    background-color: #f9fbfd;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    border-left: 4px solid #2e8b57;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.day-header h4 {
    color: #2e8b57;
    margin: 0;
    font-size: 1.3rem;
    flex: 1;
}

.duration {
    background-color: #d34d42;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.itinerary-day ul {
    padding-left: 20px;
}

.itinerary-day li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.itinerary-day li::before {
    content: '•';
    color: #d34d42;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-includes {
    background-color: #f0f8f4;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.package-includes ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.package-includes li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #555;
}

.package-includes i {
    color: #d34d42;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.package-price-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #2e8b57, #3CB371);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.price-box h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.price-person {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.9;
}

.price-box p {
    margin: 20px 0;
    opacity: 0.9;
}

.price-box .btn-primary {
    background-color: #fff;
    color: #2e8b57;
    font-weight: 600;
    margin-top: 20px;
}

.price-box .btn-primary:hover {
    background-color: #f0f0f0;
}

.booking-info {
    flex: 1;
    min-width: 300px;
    background-color: #f9fbfd;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.booking-info h4 {
    color: #2e8b57;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.booking-info ul {
    padding-left: 0;
}

.booking-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
}

.booking-info i {
    color: #d34d42;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-detail-content {
        padding: 25px;
    }
    
    .package-highlights ul,
    .package-includes ul {
        grid-template-columns: 1fr;
    }
    
    .package-price-section {
        flex-direction: column;
    }
    
    .price-box,
    .booking-info {
        flex: 1 1 100%;
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .duration {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .package-detail-content {
        padding: 20px;
    }
    
    .package-highlights,
    .package-includes {
        padding: 20px;
    }
    
    .itinerary-day {
        padding: 20px;
    }
    
    .price-box,
    .booking-info {
        padding: 25px;
    }
}

/* ==================== */
/* BUTTON STYLES */
/* ==================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #d34d42, #E05A4F);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E05A4F, #D04A3F);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Specific styles for buttons in price boxes */
.price-box .btn-primary {
    background: #d34d42;
    color: #fff;
    border: 2px solid #d34d42;
}

.price-box .btn-primary:hover {
    background: #d34d42;
    color: #fff;
    border-color: #d34d42;
}

/* Button in special offers section */
.special-offers .btn-primary {
    background: #fff;
    color: #d34d42;
}

.special-offers .btn-primary:hover {
    background: #f0f0f0;
    color: #E05A4F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}


/* Header Alignment Fix */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap; /* Added for mobile responsiveness */
}

/* Navigation Alignment Fix */
nav ul {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on mobile */
    justify-content: center; /* Center items when they wrap */
    gap: 15px; /* Replace margin-left on li with gap */
}

nav ul li {
    margin-left: 0; /* Remove individual margin */
}

/* Hero Content Alignment Fix */
.hero-content {
    max-width: 800px;
    padding: 0 20px; /* Add padding for mobile */
    width: 100%; /* Ensure full width */
}

/* Features Section Alignment Fix */
.features .container {
    display: flex;
    justify-content: center; /* Center items instead of space-between */
    flex-wrap: wrap;
    gap: 30px; /* Consistent gap between items */
}

.feature-box {
    flex: 0 0 calc(33.333% - 30px); /* Account for gap */
    min-width: 280px; /* Minimum width before wrapping */
    text-align: center;
    padding: 30px;
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

/* Button Alignment Fix */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 auto; /* Center the button */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .feature-box {
        flex: 0 0 100%; /* Full width on mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Features Section Alignment Fix */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; /* Consistent spacing between boxes */
}

.feature-box {
    flex: 1 1 300px; /* Grow and shrink with minimum 300px width */
    max-width: calc(33.33% - 20px); /* Account for gap */
    text-align: center;
    padding: 30px;
    background-color: #d9d3d3; /* Changed from #e0e0e0 to match your theme */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 2.5rem;
    color: #d34d42;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #2e8b57;
    margin-bottom: 15px;
}

.feature-box p {
    color: #7f8c8d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature-box {
        max-width: calc(50% - 15px); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .features .container {
        justify-content: center; /* Center items on smaller screens */
    }
    
    .feature-box {
        max-width: 100%; /* Full width on mobile */
        flex: 1 1 100%;
    }
}

/* Additional Wildlife Tours Specific Styles */
.wildlife-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/wildlife-adventure.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.wildlife-tours {
    padding: 80px 0;
    background-color: #f9fbfd;
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.tour-content {
    padding: 25px;
}

.tour-duration {
    display: inline-block;
    background: #d34d42;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tour-highlights {
    margin: 20px 0;
}

.tour-highlights li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tour-highlights li:before {
    content: "•";
    color: #d34d42;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.tour-price {
    font-size: 1.5rem;
    color: #2e8b57;
    font-weight: bold;
    margin: 20px 0;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .wildlife-hero {
        height: 50vh;
    }
}

/* Add this to your existing footer styles */
footer {
    background-color: #2e8b57; /* Your dark green color - adjust as needed */
    color: #ffffff; /* Default text color */
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff; /* White icons */
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */
    transform: translateY(-2px);
}

/* Specific colors for each platform on hover (optional) */
.social-links a[aria-label="Facebook"]:hover { background-color: #3b5998; }
.social-links a[aria-label="Twitter"]:hover { background-color: #1da1f2; }
.social-links a[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-links a[aria-label="YouTube"]:hover { background-color: #ff0000; }
.social-links a[aria-label="LinkedIn"]:hover { background-color: #0077b5; }

/* Responsive adjustment */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Responsive Map Image */
.map-container {
    margin-top: 2rem;
    text-align: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.map-link p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

/* For larger screens (optional) */
@media (min-width: 768px) {
    .map-image {
        max-width: 800px; /* Adjust as needed */
        margin: 0 auto;
    }
}

 .map-image {
   
    max-width: 100%;  /* උපාංගයේ පළලට ගැලපෙන පරිදි */
    height: auto;     /* රූපයේ අනුපාතය රඳවා ගනී */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ටැබ්/ඩෙස්ක්ටොප් සඳහා විශාල රූපයක් අවශ්‍ය නම් */
@media (min-width: 768px) {
    .map-image {
        max-width: 800px;
    }
}

.scrollable-map {
    max-height: 300px;
    overflow-y: auto;
}
.map-image {
    width: 100%;
    height: auto;
}

.horizontal-scroll-map {
    max-height: 400px;
    overflow-x: auto;
    overflow-y: hidden;
}

.founder-note {
    margin-top: 2rem !important; /* Adjust the value as needed */
}

/* Photo Tours Page Styles */
.photo-tours {
    padding: 60px 0;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    padding: 15px 20px 0;
    color: #333;
}

.tour-card p {
    padding: 10px 20px;
    color: #666;
}

.tour-card a {
    display: inline-block;
    margin: 0 20px 20px;
}

.photo-tour-benefits {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.photo-tour-benefits h3 {
    margin-bottom: 20px;
    text-align: center;
}

.photo-tour-benefits ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.photo-tour-benefits li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.photo-tour-benefits i {
    color: #FF6B6B;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.testimonials {
    background: #FF6B6B;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial .author {
    font-style: normal;
    font-weight: bold;
    margin-top: 20px;
}

.cta {
    text-align: center;
    padding: 60px 0;
    background: #f5f5f5;
}

.cta h3 {
    margin-bottom: 20px;
}


/* Features Section */
/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

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

.features h2 {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 15px;
}

.features .section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #e1f8e6; 
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 111, 97, 0.1);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #d34d42;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2e8b57;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .features .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Photography Journey Section */
.photo-journey {
    padding: 80px 0;
    background-color: #fff;
}

.photo-journey h2 {
    text-align: center;
    color: #2e8b57;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.photo-journey .subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.photo-category {
    margin-bottom: 60px;
}

.photo-category h3 {
    color: #d34d42;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.photo-category h3 i {
    font-size: 1.5rem;
}

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

.photo-grid a {
    display: block;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.photo-grid a:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-grid a:hover img {
    transform: scale(1.05);
}

.photographer-notes {
    background-color: #f0f8f4;
    border-radius: 10px;
    padding: 50px;
    margin-top: 60px;
}

.notes-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notes-content h3 {
    color: #2e8b57;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.notes-content p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.signature img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d34d42;
}

.signature .name {
    font-weight: bold;
    color: #2e8b57;
    margin-bottom: 5px;
}

.signature .title {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-journey {
        padding: 60px 0;
    }
    
    .photographer-notes {
        padding: 40px 30px;
    }
    
    .notes-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid a {
        height: 250px;
    }
    
    .photo-category h3 {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .photographer-notes {
        padding: 30px 20px;
    }
}


/* Hill Country Specific Styles */
.hillcountry-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hillcountry-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hillcountry-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hillcountry-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hillcountry-tours {
    padding: 80px 0;
    background-color: #fff;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    color: #2e8b57;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.tour-duration {
    display: block;
    color: #d34d42;
    font-weight: 600;
    margin-bottom: 15px;
}

.tour-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-highlights {
    margin: 25px 0;
}

.tour-highlights h4 {
    color: #2e8b57;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tour-highlights ul {
    list-style: none;
}

.tour-highlights li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.tour-highlights li:before {
    content: "•";
    color: #d34d42;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.tour-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d34d42;
    margin: 20px 0;
    text-align: center;
}

.why-choose-us {
    padding: 80px 0;
    background-color: #f0f8f4;
}

.why-choose-us h2 {
    text-align: center;
    color: #2e8b57;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #d34d42;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2e8b57;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hillcountry-hero h1 {
        font-size: 3rem;
    }
    
    .hillcountry-hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hillcountry-hero {
        height: 60vh;
    }
    
    .hillcountry-hero h1 {
        font-size: 2.5rem;
    }
    
    .hillcountry-tours,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .tour-grid,
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hillcountry-hero h1 {
        font-size: 2rem;
    }
    
    .hillcountry-hero p {
        font-size: 1.1rem;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Additional styles for logo integration */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
}

.partner_name {
    font-size: 15px;
    color: #2e8b57;
    margin-bottom: 3px;
}


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

.service-section {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-section:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-header {
    background-color: #2e8b57;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px;
    padding-left: 16px;
}

.service-header h2 {
    margin: 0;
    font-size: 22px;
    color: white;
}

.service-header i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-content {
    display: none;
    padding: 20px;
    background-color: white;
}

.service-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-box {
    background-color: #a3d9b175;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
}

.feature-box i {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.feature-box h3 {
    margin-top: 0;
    color: #2c3e50;
}

.active .service-header i {
    transform: rotate(180deg);
}

.active .service-content {
    display: block;
}

.read-more-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    display: inline-block;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #c0392b;
}


.feedback-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.feedback-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 180px;
}

.stat-box h3 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin: 0;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feedback-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feedback-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.feedback-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.feedback-info h3 {
    margin: 0 0 5px;
    color: #333;
}

.rating {
    color: #ffc107;
}

.feedback-content {
    padding: 20px;
}

.feedback-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

/* Feedback Form Styles */
.feedback-form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.feedback-form-section h3 {
    text-align: center;
    margin-bottom: 10px;
}

.feedback-form-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group .file-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.file-input-container {
    position: relative;
}

.file-input-label {
    display: block;
    padding: 12px;
    background: #f8f9fa;
    border: 1px dashed #ccc;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.file-input-label:hover {
    background: #e9ecef;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.file-name {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

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

.rating-input .stars {
    display: flex;
    gap: 5px;
}

.rating-input .stars i {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input .stars i.active,
.rating-input .stars i:hover {
    color: #ffc107;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    width: 100%;
}

.btn-primary:hover {
    background: #c0392b;
}

/* Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.inbound-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/sri-lanka-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 40px;
}

.inbound-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.inbound-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-section {
    text-align: center;
    margin: 60px 0;
}

.intro-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.experience-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.experience-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.experience-content {
    padding: 25px;
    background: white;
}

.experience-content h3 {
    color: #e74c3c;
    margin-top: 0;
    font-size: 1.5rem;
}

.highlight-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-card i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.itinerary-section {
    margin: 60px 0;
}

.itinerary-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #777;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #e74c3c;
    border-bottom: 3px solid #e74c3c;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

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

.inbound-itinerary-day {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.inbound-itinerary-day h4 {
    color: #2c3e50;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.inbound-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.inbound-btn:hover {
    background: #c0392b;
}

.inbound-testimonials {
    margin: 80px 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #2c3e50;
}

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/sri-lanka-cta.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: -40px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Header & Navigation Alignment Fixes */
header .inbound-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo-container {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

/* Main Navigation Alignment */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d34d42;
    background-color: rgba(211, 77, 66, 0.1);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    header .inbound-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 10px;
    }
    
    nav ul {
        gap: 15px;
        justify-content: center;
    }
    
    nav ul li a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 10px;
    }
    
    nav ul li a {
        padding: 5px 8px;
        font-size: 0.85rem;
    }
}

.air-ticket-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/air-ticketing-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.air-ticket-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.intro-section {
    text-align: center;
    margin-bottom: 50px;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-icon {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.airline-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.airline-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.airline-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.air-ticket-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.air-ticket-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.air-ticket-card:hover {
    transform: translateY(-5px);
}

.air-ticket-header {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.air-ticket-body {
    padding: 20px;
    background: white;
}

.air-ticket-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.air-ticket-feature i {
    color: #e74c3c;
    margin-right: 10px;
}

.air-ticket-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.air-ticket-btn:hover {
    background: #c0392b;
}

.air-ticket-testimonials {
    margin: 50px 0;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.air-testimonial-card {
    margin-bottom: 30px;
}

.air-ticket-testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.air-ticket-testimonial-author {
    font-weight: bold;
    color: #2c3e50;
}

.air-ticket-search-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 50px 0;
    text-align: center;
}

.air-ticket-search-box h2 {
    margin-top: 0;
}

.air-ticket-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.air-ticket-search-form input, .air-ticket-search-form select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.air-ticket-search-btn {
    grid-column: 1 / -1;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.air-ticket-search-btn:hover {
    background: #c0392b;
}

.destination-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.destination-block {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.destination-block:hover {
    transform: translateY(-5px);
}
.destination-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.destination-info {
    padding: 15px;
}
.destination-info h3 {
    margin-top: 0;
    color: #2c3e50;
}
.destination-info p {
    color: #7f8c8d;
    font-size: 14px;
}
.destinations-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/best-destination.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 40px;
}
.destinations-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.destinations-header .section-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
/* Color Variables */
:root {
    --primary: #e74c3c;
    --secondary: #2c3e50;
    --light: #f8f9fa;
    --dark: #343a40;
}


 /* Hero Section */
.cultural-tours-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/cultural-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 40px;
}

.cultural-tours-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Main Content Container */
.cultural-tours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cultural Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.highlight-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.highlight-content {
    padding: 20px;
    background: white;
}

.hero-packages-content {
    max-width: 1200px;
    padding: 0 20px;
}

.hero-packages-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.hero-packages-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media (max-width: 768px) {
    .hero-packages {
        height: 300px;
    }
    
    .hero-packages-content h1 {
        font-size: 2rem;
    }
    
    .hero-packages-content p {
        font-size: 1.1rem;
    }
}