/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: #00BFA6;
    padding: 10px 0;
    color: white;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Mobile Responsive for Top Contact Bar */
@media (max-width: 768px) {
    .top-contact-bar {
        padding: 8px 0;
    }

    .top-contact-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .contact-info span {
        margin-right: 0;
        font-size: 14px;
    }

    #google_translate_element {
        margin: 5px 0;
    }

    #google_translate_element select {
        padding: 4px 6px;
        font-size: 14px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        margin-left: 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info span {
        font-size: 13px;
    }
    
    .social-links a {
        font-size: 15px;
    }

    #google_translate_element {
        width: 100%;
        text-align: center;
    }

    #google_translate_element select {
        width: 200px;
        max-width: 100%;
    }
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

nav {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a.active {
    color: #00BFA6;
}

.nav-links a.dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

.enquire-btn {
    background-color: #00BFA6;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.enquire-btn:hover {
    background-color: #00a892;
}

/* Hero Section */
.hero {
    background-image: url('images/Banner_innerimage.png');
    background-color: #00BFA6;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    
}

.hero-content {
    flex: 1;
    color: white;
    max-width: 600px;
    font-family: 'Kufam';
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons a {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
}

.call-btn {
    background-color: #FFB74D;
    color: #000;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hexagon {
    position: relative;
    width: 106%;
    padding-bottom: 115%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    /* border: 8px solid #FFB74D; */
    overflow: hidden;
}

.hexagon img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 2rem 5%;
    background-color: var(--white);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.1); */
    transition: transform 0.3s;
}

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

.service-card img {
    width: 80px;
    margin-bottom: 1rem;
    margin-left: 80px;
}

/* Packages Section */
.packages {
    padding: 60px 0;
    background-color: white;
}

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

.packages h2 {
    color: #00BFA6;
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 1088px;
    margin: 0 auto 40px;
}

.download-btn {
    text-align: center;
    margin: 25px 0 40px;
}

.btn-primary {
    background-color: #FFB74D;
    color: #333;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #ffa726;
    transform: translateY(-2px);
}

.package-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 20px auto;
}

.package-card {
    display: flex;
    background: white;
}

.package-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

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

.duration-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFB74D;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 16px;
}

.package-info {
    flex: 0 0 55%;
    padding: 35px;
    
}

.package-info h3 {
    color: #00BFA6;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Kufam';
}

.price-section {
    margin-bottom: 25px;
}

.old-price {
    color: #00bfa6;
    text-decoration: line-through;
    font-size: 22px;
    margin-right: 15px;
}

.new-price {
    color: #ffa014;
    font-size: 28px;
    font-weight: 600;
}

.amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.amenity {
    background: #E8F5F3;
    width: 55px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.amenity img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.action-buttons a {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-book {
    background-color: #00BFA6;
    color: white;
}

.btn-call {
    background-color: #FFB74D;
    color: #333;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.action-buttons a:hover {
    transform: translateY(-2px);
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background-color: #F5FFFE;
    overflow: hidden;
}

.experience .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.experience-content {
    flex: 1;
    max-width: 600px;
    font-family: 'Kufam';

}

.experience-content h2 {
    font-size: 42px;
    color: #4A4A4A;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 600;
}

.experience-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.request-btn {
    display: inline-block;
    background-color: #00BFA6;
    color: white;
    padding: 15px 35px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.request-btn:hover {
    transform: translateY(-2px);
}

.experience-gallery {
    flex: 1;
    position: relative;
}

.gallery-frame {
    position: relative;
    width: 100%;
    padding-top: 120%;
    background: #00BFA6;
    border-radius: 20px;
    overflow: hidden;
}

.main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-bubble {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.testimonial-bubble.top {
    top: 10%;
    right: 9px;
}

.testimonial-bubble.bottom {
    bottom: 10%;
    left: 9px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    flex: 1;
}

.user-details .quote {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.user-details .name {
    font-size: 12px;
    color: #666;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.play-button i {
    color: #00BFA6;
    font-size: 24px;
    margin-left: 4px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
    font-family: 'Kufam';
}

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

.why-choose-us h2 {
    color: #00BFA6;
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.section-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 1033px;
    margin: 0 auto 40px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.image-section {
    flex: 0 0 45%;
}

.image-section img {
    width: 100%;
    border-radius: 0;
    display: block;
}

.features-section {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-row {
    display: flex;
    gap: 20px;
}

.feature-box {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 191, 166, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Team Section */
.team {
    padding: 1rem 5%;
    background-color: var(--white);
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 400px;
    height: 400px;
    border-radius: 1%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Partners Section */
.partners {
    padding: 3rem 5%;
    background-color: var(--light-gray);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: white;
}

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

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.header-content {
    max-width: 600px;
}

.header-content h2 {
    color: #00BFA6;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
}

.header-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.review-navigation {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background-color: #FFB74D;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
}

.nav-btn.prev {
    background-color: #FFF;
    border: 1px solid #FFB74D;
}

.reviews-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviewer-info {
    position: relative;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 255, 240, 0.1);
    color: #00BFA6;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.tag {
    animation: float 3s ease-in-out infinite;
}

.review-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.review-content .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating i {
    color: #FFD700;
    font-size: 14px;
}

.rating span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.review-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Tablet responsive for reviews */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #F5FFFE;
}

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

.gallery h2 {
    color: #4A4A4A;
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 1033px;
    margin: 0 auto 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item.large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:not(.large) {
    grid-column: span 3;
}

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

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

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

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

.faq h2 {
    color: #00BFA6;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #e2f7f5;
    border-radius: 10px;
    overflow: hidden;
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: rgba(0, 255, 240, 0.15);
}

.faq-header h3 {
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.toggle-btn {
    color: #00BFA6;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* When active */
.faq-item.active .toggle-btn {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    padding: 0 25px 20px;
    max-height: 1000px;
}

/* Contact Section */
.contact {
    padding: 70px 0;
    background-color: white;
}

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

.contact-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    color: #00BFA6;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

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

.form-group {
    flex: 1;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #027e42;
    border-radius: 20px;
    font-size: 15px;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    outline: none;
    border-color: #00BFA6;
}

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

.submit-btn {
    background-color: #00BFA6;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: #003828;
    padding: 60px 0 30px;
    color: white;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

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

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact ul li i {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-methods img {
    height: 25px;
    object-fit: contain;
}

/* Authorized By Section */
.authorized-by {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.authorized-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.2), transparent);
}

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

.auth-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-family: 'Kufam';
}

.auth-header h2 {
    font-size: 42px;
    color: #00BFA6;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.auth-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFB74D;
    border-radius: 2px;
}

.auth-header p {
    font-size: 18px;
    color: #666;
    max-width: 782px;
    margin: 0 auto;
}

.auth-header .rating {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 191, 166, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.auth-header .rating:hover {
    transform: translateY(-3px);
}

.auth-header .rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 8px;
}

.auth-header .rating span {
    color: #00BFA6;
    font-weight: 600;
    font-size: 16px;
}

.airlines-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
}

.airline {
    flex: 0 1 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.airline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
}

.airline:hover::before {
    left: 100%;
}

.airline:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.airline img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.airline:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.auth-header .rating {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .authorized-by {
        padding: 50px 0;
    }

    .auth-header h2 {
        font-size: 32px;
    }

    .auth-header p {
        font-size: 16px;
        padding: 0 20px;
    }

    .airlines-logos {
        gap: 20px;
        padding: 10px;
    }

    .airline {
        flex: 0 1 140px;
        height: 60px;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }

    .service-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        margin: 5px 0;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Services Section */
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Experience Section */
    .experience-gallery {
        margin-top: 40px;
    }

    .testimonial-bubble {
        display: none;
    }

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

    .gallery-item.large {
        grid-column: span 2;
    }

    /* Contact Form */
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    /* Header */
    .logo img {
        height: 50px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    /* Services Section */
    .service-card {
        padding: 1.5rem;
    }

    /* Package Section */
    .package-image {
        height: 200px;
    }

    .package-info {
        padding: 20px;
    }

    .package-info h3 {
        font-size: 24px;
    }

    .amenities {
        flex-wrap: wrap;
    }

    /* Team Section */
    .team-members {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* Reviews Section */
    .review-card {
        flex: 0 0 100%;
    }

    /* Contact Section */
    .contact-content {
        flex-direction: column;
    }

    .contact-image {
        height: 300px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .footer-contact ul li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Global */
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Header */
    header {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Services Section */
    .service-card {
        padding: 1.5rem;
    }

    /* Package Section */
    .package-image {
        height: 200px;
    }

    .package-info {
        padding: 20px;
    }

    .package-info h3 {
        font-size: 24px;
    }

    /* Experience Section */
    .experience-content h2 {
        font-size: 28px;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    /* Contact Form */
    .form-control {
        padding: 10px;
    }

    .submit-btn {
        width: 100%;
    }

    /* About Page */
    .full-width-image-title {
        font-size: 24px;
    }

    .hero-demo-content h1 {
        font-size: 28px;
    }

    .hero-demo-buttons {
        flex-direction: column;
    }

    /* Gallery Page */
    .quran-gallery h2 {
        font-size: 24px;
    }

    .quran-gallery-grid {
        gap: 10px;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover,
    .gallery-item:hover img,
    .hero-buttons a:hover,
    .action-buttons a:hover {
        transform: none;
    }

    .nav-links a,
    .footer-links ul li a {
        padding: 10px;
    }

    .social-link {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    .hero-buttons,
    .nav-links,
    .social-links,
    .footer {
        display: none;
    }

    .container {
        width: 100%;
        max-width: none;
    }

    img {
        max-width: 100% !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: none;
        color: #000;
    }
} 
/*about page style*/
/* Full Width Image Section */
.full-width-image-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    /* Overlay setup */
    z-index: 1;
}

/* Centered About Us title on full-width image */
.full-width-image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 1px 2px rgba(0,0,0,0.15);
    z-index: 3;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

/* Green transparent overlay */
.full-width-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 191, 166, 0.35); /* green with transparency */
    z-index: 2;
    pointer-events: none;
}

.full-width-image-section img.full-width-image {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 300px;
    position: relative;
    z-index: 1;
}

/* Hero Demo Section */
.hero-demo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: #F5FFFE;
    padding: 72px 106px;
}
.hero-demo-image {
    flex: 1;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-right: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.hero-demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-demo-content {
    flex: 1;
    background: none;
    padding: 0;
}
.hero-demo-content h1 {
    font-size: 42px;
    color: #4A4A4A;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
}
.hero-demo-content p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 22px;
}
.hero-demo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}
.hero-demo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.08rem;
    color: #22505a;
}
.hero-demo-features li i {
    color: #00BFA6;
    font-size: 1.2rem;
    margin-right: 12px;
    min-width: 22px;
}
.hero-demo-buttons {
    display: flex;
    gap: 16px;
}
.hero-demo-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 27px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-demo-btn.brochure {
    background: #FFB74D;
    color: #444;
}
.hero-demo-btn.enquire {
    background: #00BFA6;
    color: #fff;
}
.hero-demo-btn.brochure:hover {
    background: #ffc266;
}
.hero-demo-btn.enquire:hover {
    background: #009e8a;
}
@media (max-width: 900px) {
    .hero-demo-section {
        flex-direction: column;
        padding: 30px 10px;
    }
    .hero-demo-image {
        margin-right: 0;
        margin-bottom: 30px;
        max-width: 90vw;
    }
}
/* ...have qs section... */
.hero-contact-section {
    width: 100vw;
    min-height: 80vh;
    background: url('images/cta_about_middile.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0;
    padding: 0;
}
.hero-contact-overlay {
    background: rgb(87 169 195 / 75%); /* light blue with opacity */
    border-radius: 16px;
    padding: 48px 48px 32px 48px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
    width: 100%;
    margin-left: 7vw;
}
.hero-contact-overlay h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero-contact-btn {
    background: #FFB74D;
    color: #444;
    border: none;
    border-radius: 27px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.hero-contact-btn:hover {
    background: #ffd699;
}
@media (max-width: 700px) {
    .hero-contact-overlay {
        padding: 28px 12px 20px 12px;
        max-width: 95vw;
        margin-left: 0;
    }
    .hero-contact-overlay h2 {
        font-size: 1.4rem;
    }
    .hero-contact-btn {
        padding: 12px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .full-width-image-title {
        font-size: 2rem;
        padding: 0 10px;
    }
}
/*gallery page style*/
.quran-gallery {
    padding: 60px 0 60px 0;
    background: #F5FFFE;
    text-align: center;
}
.quran-gallery h2 {
    font-size: 42px;
    color: #4A4A4A;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}
.quran-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.quran-gallery-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.quran-gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
    .quran-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .quran-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .quran-gallery {
        padding: 32px 0 20px 0;
    }
    .quran-gallery h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    * {
        -webkit-text-size-adjust: 100%;
    }

    body {
        width: 100vw;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .hero {
        width: 100vw;
        padding: 30px 0;
    }

    .hero .container {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
    }

    /* Services Section */
    .services {
        width: 100vw;
        padding: 1px 0;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
    }

    /* Packages Section */
    .packages {
        width: 100vw;
        padding: 30px 0;
    }

    .package-card {
        flex-direction: column;
    }

    .package-image {
        width: 100%;
        height: 200px;
    }

    .package-info {
        width: 100%;
        padding: 20px;
    }

    /* Experience Section */
    .experience {
        width: 100vw;
        padding: 30px 0;
    }

    .experience .container {
        flex-direction: column;
    }

    .experience-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    /* Why Choose Us */
    .why-choose-us {
        width: 100vw;
        padding: 30px 0;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .feature-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Reviews Section */
    .reviews {
        width: 100vw;
        padding: 30px 0;
    }

    .reviews-slider-container {
        overflow: hidden;
    }
    
    .reviews-slider {
        flex-direction: row;
        gap: 20px;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin-bottom: 0;
    }
    
    .review-navigation {
        justify-content: center;
        margin-top: 20px;
    }
    
    .nav-btn {
        padding: 6px 2px;
        font-size: 14px;
    }
    
    .nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Gallery Section */
    .gallery {
        width: 100vw;
        padding: 30px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* FAQ Section */
    .faq {
        width: 100vw;
        padding: 30px 0;
    }

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

    /* Contact Section */
    .contact {
        width: 100vw;
        padding: 30px 0;
    }

    .contact-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer {
        width: 100vw;
        padding: 30px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Enhanced Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 100;
        margin-right: 15px;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #00BFA6;
        transition: all 0.3s ease;
        transform-origin: left center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        padding: 0;
        margin: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 99;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: rgba(0, 191, 166, 0.05);
        padding-left: 25px;
    }

    .nav-links a.active {
        color: #00BFA6;
        background-color: rgba(0, 191, 166, 0.1);
    }

    .nav-links a.dropdown {
        position: relative;
        padding-right: 40px;
    }

    .nav-links a.dropdown::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    .nav-links a.dropdown.active::after {
        transform: translateY(-50%) rotate(-135deg);
    }

    /* Adjust header layout */
    header {
        position: relative;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav.container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo img {
        height: 40px;
    }

    .enquire-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}
