/* Reset and Base 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;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #2a9d8f;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #2a9d8f;
    color: white;
}

.btn-primary:hover {
    background-color: #21867a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2a9d8f;
    border: 2px solid #2a9d8f;
}

.btn-secondary:hover {
    background-color: rgba(42, 157, 143, 0.1);
    transform: translateY(-3px);
}

.section {
    padding: 0px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #264653;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a9d8f;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #2a9d8f;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a9d8f;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}



/* Tariff Section */
.tariff-section {
    background-color: #f5f9f8;
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tariff-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tariff-card.popular {
    border: 2px solid #2a9d8f;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #2a9d8f;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.tariff-header {
    background-color: #264653;
    color: white;
    padding: 25px;
    text-align: center;
}

.tariff-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

.tariff-body {
    padding: 25px;
}

.tariff-features {
    list-style: none;
}

.tariff-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tariff-features i {
    color: #2a9d8f;
    margin-right: 10px;
    font-size: 0.9rem;
}

.tariff-note {
    background-color: #e9f5f3;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2a9d8f;
}

.tariff-note i {
    color: #2a9d8f;
    margin-right: 10px;
}

/* Tourist Places Section */
.tourist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tourist-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tourist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tourist-image {
    height: 200px;
    overflow: hidden;
}

.tourist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tourist-card:hover .tourist-image img {
    transform: scale(1.05);
}

.tourist-content {
    padding: 25px;
}

.tourist-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #264653;
}

.tourist-content p {
    color: #666;
    margin-bottom: 15px;
}

.tourist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #f0f7f6;
    color: #2a9d8f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    background-color: #f0f7f6;
    color: #2a9d8f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #264653;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #264653;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a9d8f;
}

/* Footer */
.footer {
    background-color: #264653;
    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 h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2a9d8f;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #2a9d8f;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2a9d8f;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: #2a9d8f;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .home-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .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: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .home-title {
        font-size: 2.3rem;
    }
    
    .home-subtitle {
        font-size: 1.3rem;
    }
    
    .home-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tourist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .home-title {
        font-size: 2rem;
    }
    
    .home-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Contact Section Layout */
.contact-top-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .contact-top-section {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* Left Column: Contact Form */
.contact-form-column {
    display: flex;
    flex-direction: column;
}

.contact-form-container {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    
}

.contact-form-container h3 {
    font-size: 1.6rem;
    color: #264653;
    margin-bottom: 10px;
}

.form-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2a9d8f;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.submit-btn {
    background-color: #2a9d8f;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

@media (min-width: 576px) {
    .submit-btn {
        width: auto;
    }
}

.submit-btn:hover {
    background-color: #21867a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.form-note {
    color: #888;
    font-size: 0.85rem;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

/* Right Column: Contact Information */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-header {
    background-color: #f5f9f8;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2a9d8f;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    color: #264653;
    margin-bottom: 8px;
}

.contact-info-header p {
    color: #666;
    font-size: 1rem;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    border-color: #2a9d8f;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 120px;
    flex-shrink: 0;
}

.contact-info-label i {
    color: #2a9d8f;
    font-size: 1.1rem;
    width: 20px;
}

.contact-info-label span {
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-details {
    flex-grow: 1;
}

.contact-info-details p {
    color: #264653;
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.contact-info-details .sub-text {
    color: #777 !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}



/* Bottom Section: Map */
.map-section {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
  
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px 25px 0;
}

@media (min-width: 768px) {
    .map-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 30px 30px 0;
    }
}

.map-title-section h3 {
    font-size: 1.6rem;
    color: #264653;
    margin-bottom: 5px;
}

.map-title-section p {
    color: #666;
    margin: 0;
}

.map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.map-action-btn {
    background-color: white;
    color: #2a9d8f;
    border: 1px solid #2a9d8f;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.map-action-btn:hover {
    background-color: #2a9d8f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.2);
}

.map-container {
    padding: 25px;
}

@media (min-width: 768px) {
    .map-container {
        padding: 30px;
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.google-map {
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.map-location-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-pin {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #2a9d8f;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.map-info-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.map-info-card h5 {
    color: #264653;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.map-info-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.location-footer {
    padding: 0 25px 25px;
}

@media (min-width: 768px) {
    .location-footer {
        padding: 0 30px 30px;
    }
}

.location-footer p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.location-footer i {
    color: #2a9d8f;
    margin-top: 3px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-label {
        min-width: 100px;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-info-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info-label {
        min-width: auto;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .map-overlay {
        position: static;
        padding: 15px;
    }
    
    .map-location-info {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info-header,
    .verification-code {
        padding: 20px;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .code-digit {
        width: 40px;
        height: 50px;
        font-size: 1.5rem;
    }
}
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}






/* Home/Hero Section */
.home-section {
    position: relative;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    flex-grow: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.home-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-subtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.home-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Slide Navigation Dots */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #2a9d8f;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slide Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slide-nav:hover {
    background-color: rgba(42, 157, 143, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}


/* Responsive Design for Hero Section */
@media (max-width: 992px) {
    .home-title {
        font-size: 2.8rem;
    }
    
    .home-subtitle {
        font-size: 1.3rem;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-slide {
        left: 15px;
    }
    
    .next-slide {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .home-title {
        font-size: 2.3rem;
    }
    
    .home-subtitle {
        font-size: 1.2rem;
    }
    
    .home-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-nav {
        display: none;
    }
    
    .home-info .info-item {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .home-title {
        font-size: 2rem;
    }
    
    .home-content {
        padding: 20px;
    }
    
    .slide-dots {
        bottom: 20px;
    }
}


/* Tariff Section */
.tariff-section {
    background-color: #f5f9f8;
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tariff-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tariff-card.popular {
    border: 2px solid #2a9d8f;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #2a9d8f;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.tariff-header {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    color: white;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tariff-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.tariff-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.tariff-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.tariff-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.tariff-body {
    padding: 30px 25px;
    flex-grow: 1;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table thead {
    background-color: #f0f7f6;
}

.tariff-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #264653;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e0e0e0;
}

.tariff-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}

.tariff-table tbody tr:last-child td {
    border-bottom: none;
}

.tariff-table tbody tr:hover {
    background-color: #f9f9f9;
}

.price-cell {
    font-weight: 700;
    color: #2a9d8f !important;
    font-size: 1.1rem !important;
    text-align: right;
}

.tariff-footer {
    padding: 20px 25px;
    background-color: #f8fbfb;
    border-top: 1px solid #eee;
}

.tariff-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tariff-footer i {
    color: #2a9d8f;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Additional Information Cards */
.tariff-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    background-color: #f0f7f6;
    color: #2a9d8f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #264653;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Tariff Note */
.tariff-note {
    background-color: #e9f5f3;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid #2a9d8f;
}

.tariff-note p {
    margin: 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tariff-note i {
    color: #2a9d8f;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tariff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tariff-grid {
        grid-template-columns: 1fr;
    }
    
    .tariff-additional-info {
        grid-template-columns: 1fr;
    }
    
    .tariff-header {
        padding: 25px 20px;
    }
    
    .tariff-body {
        padding: 25px 20px;
    }
    
    .tariff-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 576px) {
    .tariff-header h3 {
        font-size: 1.6rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .tariff-note p {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* About Text */
.about-text h3 {
    font-size: 1.8rem;
    color: #264653;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-features {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 576px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #2a9d8f;
    font-size: 1.1rem;
}

.feature span {
    color: #444;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: #2a9d8f;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.about-text .btn {
    margin-top: 10px;
}

/* About Image */
.about-image {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
}

.overlay-content {
    max-width: 300px;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2a9d8f;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Owner Card */
.owner-card {
    background: linear-gradient(135deg, #264653 0%, #2a9d8f 100%);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.2);
}

.owner-image {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.owner-image i {
    font-size: 2rem;
    color: white;
}

.owner-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.owner-info p {
    margin-bottom: 5px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px !important;
}

.contact-info i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content {
        gap: 40px;
    }
    
    .image-container img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .image-container img {
        height: 300px;
    }
    
    .owner-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .image-container img {
        height: 250px;
    }
    
    .overlay-content {
        max-width: 100%;
    }
}


/* ============================================
   MOBILE RESPONSIVE FIXES - ADD THESE TO BOTTOM
   ============================================ */

/* Fix for small mobile devices (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 0px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    /* Fix for tourist cards on mobile */
    .tourist-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .tourist-image {
        height: 180px;
    }
    
    .tourist-content {
        padding: 20px;
    }
    
    .tourist-content h3 {
        font-size: 1.3rem;
    }
    
    /* Fix contact form on mobile */
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-form label {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    /* Fix footer on mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-qr {
        text-align: center;
    }
    
    .footer-qr img {
        max-width: 150px;
        height: auto;
    }
    
    /* Fix map on mobile */
    .map-wrapper {
        height: 250px;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .map-overlay {
        position: static;
        padding: 10px;
    }
    
    .map-location-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .map-info-card {
        max-width: 100%;
    }
    
    /* Fix contact info items on mobile */
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-label {
        min-width: 80px;
    }
    
    .contact-info-label span {
        font-size: 0.85rem;
    }
    
    /* Fix tariff cards on mobile */
    .tariff-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .tariff-header {
        padding: 20px 15px;
    }
    
    .tariff-header h3 {
        font-size: 1.5rem;
    }
    
    .tariff-body {
        padding: 20px 15px;
    }
    
    .tariff-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .price-cell {
        font-size: 1rem !important;
    }
}

/* Fix for medium mobile devices (481px - 767px) */
@media (max-width: 767px) {
    .home-title {
        font-size: 2.2rem;
    }
    
    .home-subtitle {
        font-size: 1.2rem;
    }
    
    .home-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* About section fixes */
    .about-content {
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
    
    /* Tourist section fixes */
    .tourist-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact section fixes */
    .contact-top-section {
        gap: 30px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-info-label {
        min-width: auto;
        width: 100%;
    }
    
    /* Footer fixes */
    .footer-qr img {
        max-width: 200px;
    }
}

/* Fix for tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .tourist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tariff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tariff-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-info-label {
        min-width: 100px;
    }
}

/* Fix viewport issues */
@media (max-width: 767px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
    }
    
    /* Fix images on mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix iframe on mobile */
    iframe {
        max-width: 100%;
    }
}

/* Fix for navigation menu on mobile */
@media (max-width: 768px) {
    .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: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Fix for hero slider on mobile */
@media (max-width: 768px) {
    .hero-slide {
        padding: 20px;
    }
    
    .home-content {
        padding-top: 40px;
    }
    
    .slide-nav {
        display: none; /* Hide arrows on mobile */
    }
    
    .slide-dots {
        bottom: 20px;
    }
}

/* Fix QR code in footer */
.footer-qr {
    text-align: center;
}

.footer-qr img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-qr img {
        max-width: 120px;
    }
}

/* Fix for text overflow */
.contact-info-details p,
.contact-info-details .sub-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix for form on mobile */
@media (max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* Floating Buttons Wrapper */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* WhatsApp */
.whatsapp-btn {
    background-color: #25D366;
}

/* Call */
.call-btn {
    background-color: #007bff;
}

/* Back to Top */
.back-to-top {
    background-color: #333;
    display: none;
}

/* Tooltip */
.btn-tooltip {
    position: absolute;
    right: 60px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .floating-buttons {
        right: 12px;
        bottom: 12px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .btn-tooltip {
        display: none;
    }
}


/* Tour Packages Specific Styles */
.package-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    line-height: 1.2;
}

.package-price .duration {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i.fa-check {
    color: #27ae60;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Make sure the cards are consistent height */
.tariff-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tariff-body {
    flex: 1;
}
.tariff-card :not(.tariff-header, .tariff-header *) {
    color: #333 !important;
}