/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}



.top-banner {
    background: #272b29;
    color: white;
    padding: 8px 0;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.banner-content {
    display: inline-block;
    animation: scroll-left 40s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.top-section {
  background: url("background1.png") no-repeat center center/cover;
  color: #fff;
  width: 100%;
  background-attachment: fixed;
}

/* Header */
/* .header {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 60px;
} */

.header {
    position: fixed;
    top: 29px; /* Height of banner (8px padding * 2 + text height) */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0px 16px;
    background: rgb(7 12 16 / 59%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::before {
    /* content: "✈"; */
    font-size: 24px;
    transform: rotate(-10deg);
}

.logo img {
    width: 57px;
    height: 50px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #4CAF50;
}

.search-icon {
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 20px;
}

.contact-btn {
    background: #4CAF50;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-left: 20px;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 28px;
    justify-content: center;
    gap: 6px;
    margin-right: 10px;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 78vh;
    /*background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMCIgaGVpZ2h0PSI4MDAiIHZpZXdCb3g9IjAgMCAxMjAwIDgwMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0iYmciIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMEY3Qjc3Ii8+CjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMjZBNjlBIi8+CjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY2QkI2QSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+CjxyZWN0IHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjgwMCIgZmlsbD0idXJsKCNiZykiLz4KPGVsbGlwc2UgY3g9IjEwMCIgY3k9IjEwMCIgcng9IjgwIiByeT0iNjAiIGZpbGw9IiM0NEZGNDQ4MCIvPgo8ZWxsaXBzZSBjeD0iMTEwMCIgY3k9IjE1MCIgcng9IjYwIiByeT0iNDAiIGZpbGw9IiM5OEZCOTg2MCIvPgo8cGF0aCBkPSJNIDAgNjAwIFEgMzAwIDU1MCA2MDAgNjAwIFQgMTIwMCA2MDAgTCAxMjAwIDgwMCBMIDAgODAwIFoiIGZpbGw9IiNGMEU2OEMiLz4KPHBhdGggZD0iTSAwIDUwMCBRIDIwMCA0ODAgNDAwIDUwMCBUIDgwMCA1MDAgUSAxMDAwIDQ5MCAxMjAwIDUwMCBMIDEyMDAgODAwIEwgMCA4MDAgWiIgZmlsbD0iIzhGQkM4RjgwIi8+Cjwvc3ZnPgo=') center/cover;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-bottom: 150px;
}

.hero-content {
    color: white;
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
}

.sale-badge {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 12px 24px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.flag-icon {
    width: 20px;
    height: 14px;
    background: linear-gradient(to bottom, #FF9933 33%, white 33%, white 66%, #138808 66%);
    border-radius: 2px;
}

.sale-text {
    color: #4CAF50;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.6);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.price-section {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.original-price {
    text-decoration: line-through;
    color: #bbb;
    margin-left: 15px;
    font-size: 1.1rem;
}

.timer {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 25px;
    margin-bottom: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.chat-btn {
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    font-size: 16px;
    justify-content:center;
}


.chat-btn:hover {
    background: #20b358;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Bottom Reviews Section */
.reviews-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 20;
}

.google-review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    flex-shrink: 0;
}

.rating-number {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    color: #FFA500;
    font-size: 16px;
    margin-bottom: 3px;
}

.google-text {
    font-size: 13px;
    color: #ccc;
}

.certifications {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cert-item {
    text-align: center;
    color: white;
    font-size: 11px;
    line-height: 1.3;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.cert-item:hover {
    opacity: 1;
}

.cert-bg-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Trending Getaways Section */
.trending-section {
    padding: 80px 60px;
    background: #0A1421;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b8bcc8;;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
}

.getaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.getaway-card {
    background: #1a2332;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.getaway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Placeholder gradients for card images */
.card-image.frugal {
    background-image: url('sea1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image.family {
    background-image: url('sea2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image.honeymoon {
    background-image: url('sea3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image.adventure {
    background-image: url('sea4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image.signature {
    background-image: url('sea5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-image.custom {
    background-image: url('sea6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5722;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-content {
    padding: 25px;
}

.duration {
    background: #E8F5E8;
    color: #2E7D32;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.package-info {
    margin-bottom: 25px;
}

.package-text {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color:#ffffff;
}

.per-person {
    font-size: 14px;
    font-weight: 400;
    color: #b8bcc8;
}

/*.view-btn {
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.view-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}*/


.view-btn {
    background: transparent;          /* No fill */
    color: #fff;                      /* Ash/gray text */
    padding: 12px 80px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #999;           /* Ash/gray outline */
    transition: all 0.3s;
    display: inline-block;
}

/* Hover effect */
.view-btn:hover {
    background: #999;   /* Fill with ash/gray on hover */
    color: white;       /* Text turns white */
}


/* Exclusive Bonus Section */
.bonus-section {
    background: #081E40;
    border: 1px solid #1E3A8A;
    padding: 50px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.bonus-text {
    flex: 1;
    color: white;
    position: relative;
    z-index: 2;
}

.bonus-text-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gift-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bonus-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.bonus-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 500px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #20b358;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .reviews-section {
        padding: 20px 40px;
    }
    
    .certifications {
        gap: 25px;
    }
    
    .cert-bg-image {
        width: 50px;
        height: 50px;
    }
    
    .trending-section {
        padding: 60px 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .getaways-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .bonus-section {
        padding: 40px 40px;
        gap: 30px;
    }
    
    .bonus-title {
        font-size: 1.8rem;
    }
    
    .bonus-text p {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
        top: 35px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #0A1421;
        flex-direction: column;
        gap: 0;
        z-index: 999;
        padding: 30px 0 10px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links li {
        margin: 0 0 18px 0;
        text-align: center;
    }
    
    .search-icon, .contact-btn {
        display: none;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .hero {
        padding-bottom: 330px;
    }
    
    .hero-content {
        padding: 20px 20px 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .sale-badge {
        font-size: 14px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }
    
    .timer {
        margin-bottom: 30px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .chat-btn {
        padding: 16px 30px;
        font-size: 13px;
        /*margin-bottom: 20px;*/
        min-width: 200px;
        justify-content:center;
    }

    /*.chat-btn.sticky {
      position: fixed;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }*/

    .chat-btn.sticky {
      position: fixed;
      /*bottom:0;*/
      inset : auto 0 0 0;
      left: 0;             /* Start from left */
      width: 100%;         /* Full screen width */
      z-index: 9999;
      text-align: center;  /* Center text/button content */
      border-radius: unset;
    }


    
    .reviews-section {
        flex-direction: column;
        padding: 20px 20px;
        gap: 20px;
        align-items: center;
        text-align: center;
        height: auto;
        min-height: 140px;
    }
    
    .google-review {
        align-items: center;
        order: 1;
    }
    
    .certifications {
        justify-content: center;
        gap: 20px;
        order: 2;
        max-width: 100%;
    }
    
    .cert-bg-image {
        width: 45px;
        height: 45px;
    }
    
    .trending-section {
        padding: 50px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .getaways-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .bonus-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 25px;
    }
    
    .bonus-text-header {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .gift-icon {
        font-size: 2rem;
    }
    
    .bonus-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .bonus-text p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .whatsapp-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
        align-self: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding-bottom: 330px;
    }
    
    .hero-content {
        padding: 20px 15px 30px 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .sale-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 25px;
    }
    
    .timer {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 25px;
    }
    
    .chat-btn {
        padding: 14px 100px;
        font-size: 13px;
        margin-bottom: 0px;
        min-width: 180px;
        justify-content:center;
    }
    
    .reviews-section {
        padding: 15px 15px;
        gap: 15px;
        min-height: 120px;
    }
    
    .certifications {
        gap: 15px;
    }
    
    .cert-bg-image {
        width: 35px;
        height: 35px;
    }
    
    .rating-number {
        font-size: 20px;
    }
    
    .stars {
        font-size: 14px;
    }
    
    .google-text {
        font-size: 12px;
    }
    
    .trending-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .duration {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .package-info {
        margin-bottom: 20px;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .view-btn {
        padding: 10px 88px;
        font-size: 13px;
    }
    
    .bonus-section {
        padding: 35px 15px;
        gap: 20px;
    }
    
    .bonus-text-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .gift-icon {
        font-size: 1.8rem;
    }
    
    .bonus-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .bonus-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero {
        padding-bottom: 140px;
    }
    
    .hero-content {
        padding: 15px 10px 25px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .sale-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .timer {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .chat-btn {
        padding: 12px 80px;
        font-size: 13px;
        margin-bottom: 0px;
        min-width: 160px;
        justify-content : center;
    }
    
    .reviews-section {
        padding: 12px 10px;
        gap: 12px;
        min-height: 100px;
    }
    
    .certifications {
        gap: 10px;
    }
    
    .cert-item:nth-child(n+4) {
        margin-top: 10px;
    }
    
    .cert-bg-image {
        width: 30px;
        height: 30px;
    }
    
    .trending-section {
        padding: 35px 10px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .card-image {
        height: 140px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .duration {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .package-info {
        margin-bottom: 18px;
    }
    
    .package-text {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .per-person {
        font-size: 13px;
    }
    
    .view-btn {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .bonus-section {
        padding: 30px 10px;
        gap: 18px;
    }
    
    .bonus-text-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .gift-icon {
        font-size: 1.5rem;
    }
    
    .bonus-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .bonus-text p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .whatsapp-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .whatsapp-icon {
        font-size: 1rem;
    }
}

/* Memories Section */
.memories-section {
    background:#0A1421;
    padding: 80px 60px;
    text-align: center;
    position: relative;
}

.memories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.memories-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 400;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 5px;
}

.star {
    color: #FFA500;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.star:hover {
    transform: scale(1.2);
}

.google-reviews-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    background: white;
    padding: 10px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.g-logo {
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
}

.g-g {
    color: #4285F4;
}

.g-o1 {
    color: #EA4335;
}

.g-o2 {
    color: #FBBC05;
}

.g-g2 {
    color: #4285F4;
}

.g-l {
    color: #34A853;
}

.g-e {
    color: #EA4335;
}

.reviews-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 8px;
}

/* Add to existing Tablet Responsive section */
@media (max-width: 1024px) {
    .memories-section {
        padding: 60px 40px;
    }
    
    .memories-title {
        font-size: 2.2rem;
    }
    
    .memories-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .rating-container {
        gap: 15px;
    }
    
    .rating-stars {
        padding: 10px 16px;
    }
    
    .rating-score {
        font-size: 1.3rem;
    }
    
    .star {
        font-size: 1.1rem;
    }
    
    .g-logo {
        font-size: 1.2rem;
    }
    
    .google-reviews-logo {
        padding: 8px 14px;
    }
}

/* Add to existing Mobile Responsive section */
@media (max-width: 768px) {
    .memories-section {
        padding: 50px 20px;
    }
    
    .memories-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .memories-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .rating-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .rating-label {
        font-size: 1rem;
        order: 1;
    }
    
    .rating-stars {
        padding: 10px 18px;
        order: 2;
    }
    
    .google-reviews-logo {
        order: 3;
        padding: 8px 12px;
    }
    
    .rating-score {
        font-size: 1.4rem;
    }
    
    .star {
        font-size: 1.1rem;
    }
    
    .g-logo {
        font-size: 1.1rem;
    }
    
    .reviews-label {
        font-size: 0.9rem;
    }
}

/* Add to existing Small Mobile section */
@media (max-width: 480px) {
    .memories-section {
        padding: 40px 15px;
    }
    
    .memories-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .memories-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .rating-container {
        gap: 18px;
    }
    
    .rating-label {
        font-size: 0.95rem;
    }
    
    .rating-stars {
        padding: 8px 15px;
        gap: 6px;
    }
    
    .rating-score {
        font-size: 1.3rem;
        margin-right: 3px;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .google-reviews-logo {
        padding: 6px 10px;
        gap: 1px;
    }
    
    .g-logo {
        font-size: 1rem;
    }
    
    .reviews-label {
        font-size: 0.85rem;
        margin-left: 6px;
    }
}

/* Add to existing Extra small screens section */
@media (max-width: 360px) {
    .memories-section {
        padding: 35px 10px;
    }
    
    .memories-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .memories-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .rating-container {
        gap: 15px;
    }
    
    .rating-label {
        font-size: 0.9rem;
    }
    
    .rating-stars {
        padding: 6px 12px;
        gap: 4px;
    }
    
    .rating-score {
        font-size: 1.2rem;
        margin-right: 2px;
    }
    
    .star {
        font-size: 0.9rem;
    }
    
    .google-reviews-logo {
        padding: 5px 8px;
        gap: 0px;
    }
    
    .g-logo {
        font-size: 0.9rem;
    }
    
    .reviews-label {
        font-size: 0.8rem;
        margin-left: 4px;
    }
}

/* Testimonial Carousel Section */
.carousel-section {
  background: #0a1a2e;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 20s linear infinite;
  padding: 20px 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* move by half since we duplicated */
  }
}

.carousel-item {
  width: 360px;
  height: 480px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-10px);
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


/* Pause animation on hover */
.carousel:hover {
    animation-play-state: paused;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .carousel {
        width: calc(320px * 7);
        animation-duration: 22s;
        gap: 15px;
    }
    
    .carousel-item {
        width: 300px;
        height: 420px;
        border-radius: 18px;
    }
    
    .testimonial-image {
        border-radius: 18px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 0;
    }
    
    .carousel {
        width: calc(280px * 7);
        animation-duration: 20s;
        gap: 10px;
    }
    
    .carousel-item {
        width: 260px;
        height: 360px;
        border-radius: 15px;
    }
    
    .testimonial-image {
        border-radius: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .carousel {
        width: calc(240px * 7);
        animation-duration: 18s;
        gap: 8px;
    }
    
    .carousel-item {
        width: 220px;
        height: 320px;
        border-radius: 12px;
    }
    
    .testimonial-image {
        border-radius: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .carousel {
        width: calc(200px * 7);
        animation-duration: 16s;
        gap: 5px;
    }
    
    .carousel-item {
        width: 180px;
        height: 280px;
        border-radius: 10px;
    }
    
    .testimonial-image {
        border-radius: 10px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .carousel {
        animation: none;
    }
    
    .carousel-container {
        display: flex;
        justify-content: center;
        padding: 40px 20px;
    }
    
    .carousel-item {
        position: relative;
        margin: 0 10px;
    }
}


/* Google Reviews Carousel Section - Complete CSS */
.google-reviews-section {
    background: #0D1421;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.google-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/*.google-reviews-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 20px 0;
    will-change: transform;
}*/


.google-reviews-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
    padding: 20px 0;
    will-change: transform;
}

.review-card {
    background: #1a2332;
    border-radius: 12px;
    padding: 30px;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #2a3441;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-8px);
    background: #1f2937;
    border-color: #374151;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-star {
    color: #FFD700;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 25px;
    min-height: 120px;
    font-weight: 400;
}

.google-logo {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.reviewer-location {
    font-weight: 400;
    color: #9ca3af;
    font-size: 14px;
}

.verified-icon {
    color: #3b82f6;
    font-size: 14px;
    margin-left: 5px;
    background: #1e40af;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #374151;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 2px solid transparent;
}

.dot.active {
    background: #3b82f6;
    transform: scale(1.2);
    border-color: #60a5fa;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.dot:hover {
    background: #4b5563;
    transform: scale(1.1);
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .google-reviews-section {
        padding: 100px 80px;
    }
    
    .review-card {
        min-width: 420px;
        max-width: 420px;
        padding: 35px;
    }
    
    .review-text {
        font-size: 16px;
        min-height: 130px;
    }
    
    .carousel-dots {
        margin-top: 60px;
        gap: 15px;
    }
}

/* Desktop (1025px to 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .google-reviews-section {
        padding: 80px 60px;
    }
    
    .review-card {
        min-width: 380px;
        max-width: 380px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .google-reviews-section {
        padding: 60px 40px;
    }
    
    .google-reviews-carousel {
        gap: 25px;
    }
    
    .review-card {
        min-width: 350px;
        max-width: 350px;
        padding: 25px;
    }
    
    .review-text {
        font-size: 14px;
        min-height: 100px;
        line-height: 1.6;
    }
    
    .review-star {
        font-size: 18px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .reviewer-location {
        font-size: 13px;
    }
    
    .carousel-dots {
        margin-top: 40px;
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

/* Mobile Large (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .google-reviews-section {
        padding: 50px 20px;
    }
    
    .google-reviews-container {
        overflow: visible;
    }
    
    .google-reviews-carousel {
        gap: 20px;
        padding: 20px 40px;
    }
    
    .review-card {
        min-width: calc(100vw - 120px);
        max-width: calc(100vw - 120px);
        padding: 22px;
        cursor: grab;
        user-select: none;
    }
    
    .review-card:active {
        cursor: grabbing;
    }
    
    .review-stars {
        margin-bottom: 15px;
    }
    
    .review-star {
        font-size: 17px;
    }
    
    .review-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        min-height: 80px;
    }
    
    .google-logo {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .reviewer-info {
        gap: 12px;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .reviewer-location {
        font-size: 12px;
    }
    
    .verified-icon {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
    
    .carousel-dots {
        margin-top: 35px;
        gap: 8px;
    }
    
    .dot {
        width: 11px;
        height: 11px;
    }
}

/* Mobile Small (361px to 480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .google-reviews-section {
        padding: 40px 15px;
    }
    
    .google-reviews-carousel {
        padding: 20px 30px;
        gap: 15px;
    }
    
    .review-card {
        min-width: calc(100vw - 90px);
        max-width: calc(100vw - 90px);
        padding: 20px;
        border-radius: 10px;
    }
    
    .review-text {
        font-size: 12px;
        line-height: 1.5;
        min-height: 70px;
        margin-bottom: 18px;
    }
    
    .review-star {
        font-size: 16px;
    }
    
    .reviewer-info {
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
    }
    
    .reviewer-name {
        font-size: 13px;
    }
    
    .reviewer-location {
        font-size: 11px;
    }
    
    .verified-icon {
        width: 14px;
        height: 14px;
        font-size: 10px;
    }
    
    .google-logo {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .carousel-dots {
        margin-top: 30px;
        gap: 6px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Extra Small (320px to 360px) */
@media (min-width: 320px) and (max-width: 360px) {
    .google-reviews-section {
        padding: 35px 10px;
    }
    
    .google-reviews-carousel {
        padding: 15px 25px;
        gap: 12px;
    }
    
    .review-card {
        min-width: calc(100vw - 70px);
        max-width: calc(100vw - 70px);
        padding: 16px;
        border-radius: 8px;
    }
    
    .review-stars {
        margin-bottom: 12px;
        gap: 3px;
    }
    
    .review-star {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 11px;
        min-height: 60px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .reviewer-info {
        gap: 8px;
    }
    
    .reviewer-avatar {
        width: 28px;
        height: 28px;
    }
    
    .reviewer-name {
        font-size: 12px;
    }
    
    .reviewer-location {
        font-size: 10px;
    }
    
    .verified-icon {
        width: 12px;
        height: 12px;
        font-size: 9px;
    }
    
    .google-logo {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .carousel-dots {
        margin-top: 25px;
        gap: 5px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Ultra Small (below 320px) */
@media (max-width: 319px) {
    .google-reviews-section {
        padding: 30px 8px;
    }
    
    .google-reviews-carousel {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .review-card {
        min-width: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        padding: 14px;
    }
    
    .review-text {
        font-size: 10px;
        min-height: 50px;
        margin-bottom: 12px;
    }
    
    .review-star {
        font-size: 13px;
    }
    
    .reviewer-avatar {
        width: 24px;
        height: 24px;
    }
    
    .reviewer-name {
        font-size: 11px;
    }
    
    .reviewer-location {
        font-size: 9px;
    }
    
    .google-logo {
        font-size: 10px;
    }
    
    .carousel-dots {
        margin-top: 20px;
        gap: 4px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
}

/* High DPI/Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .review-star {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    
    .dot.active {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .review-card:hover {
        transform: none;
        background: #1a2332;
        border-color: #2a3441;
    }
    
    .dot:hover {
        background: #374151;
        transform: none;
    }
    
    .review-card {
        touch-action: pan-x;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .google-reviews-section {
        padding: 30px 20px;
    }
    
    .review-card {
        min-height: auto;
    }
    
    .review-text {
        min-height: 60px;
    }
    
    .carousel-dots {
        margin-top: 25px;
    }
}

/* Print Styles */
@media print {
    .google-reviews-section {
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }
    
    .review-card {
        background: white !important;
        border: 1px solid #ccc !important;
        color: black !important;
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .carousel-dots {
        display: none !important;
    }
    
    .google-reviews-carousel {
        display: block !important;
        transform: none !important;
    }
}

/* Why Choose Us Section */
        .why-choose-us {
            background: #0A1421;
            color: white;
            padding: 80px 60px;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }

        .why-choose-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px 60px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            font-size: 24px;
            color: #4CAF50;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .feature-content {
            flex: 1;
        }

        .feature-text {
            font-size: 16px;
            font-weight: 500;
            color: white;
            line-height: 1.4;
        }

        /* Custom icons for features */
        .star-icon::before { content: "⭐"; }
        .group-icon::before { content: "👥"; }
        .shield-icon::before { content: "🛡️"; }
        .rocket-icon::before { content: "🚀"; }
        .chart-icon::before { content: "📊"; }
        .car-icon::before { content: "🚗"; }
        .gift-icon::before { content: "🎁"; }
        .support-icon::before { content: "🎧"; }

        @media (max-width: 768px) {
            .why-choose-us {
                padding: 60px 20px;
            }

            .why-choose-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-choose-title {
                font-size: 2.2rem;
                text-align: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
/* Hospitality Partners Section */
        .hospitality-partners {
            background: #0A1421;
            color: white;
            padding: 80px 0;
            overflow: hidden;
        }

        .partners-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
        }

        .partners-carousel-container {
            position: relative;
        }

        .partners-row {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .partners-carousel-left {
            display: flex;
            gap: 30px;
            animation: scrollPartnersLeft 30s linear infinite;
        }

        .partners-carousel-right {
            display: flex;
            gap: 30px;
            animation: scrollPartnersRight 30s linear infinite;
        }

        .partner-card {
            min-width: 280px;
            height: 120px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .partner-card:hover {
            transform: translateY(-5px);
        }

        .partner-logo {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-align: center;
            /*padding: 20px;*/
        }

        /* Partner Logo Styles */
        .bayleaf-inn {
            background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc0 100%);
            color: #8B6914;
        }

        .bergamont {
            background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
            color: #B8860B;
        }

        .lemon-tree {
            background: linear-gradient(135deg, #f0fff0 0%, #e8f5e8 100%);
            color: #228B22;
        }

        .sand-heaven {
            background: linear-gradient(135deg, #fff8dc 0%, #f5deb3 100%);
            color: #DAA520;
        }

        .blue-sea {
            background: linear-gradient(135deg, #e6f3ff 0%, #b3d9ff 100%);
            color: #0066CC;
        }

        .green-ocean {
            background: linear-gradient(135deg, #f0fff0 0%, #e0ffe0 100%);
            color: #DC143C;
        }

        .itt-majestic {
            background: linear-gradient(135deg, #f0fff0 0%, #e8f8e8 100%);
            color: #228B22;
        }

        .nautika {
            background: linear-gradient(135deg, #e6f2ff 0%, #cce7ff 100%);
            color: #1E90FF;
        }

        .j-hotel {
            background: linear-gradient(135deg, #fff8dc 0%, #f0e68c 100%);
            color: #B8860B;
        }

        .silver-sand {
            background: linear-gradient(135deg, #f8f8ff 0%, #e6e6fa 100%);
            color: #708090;
        }

        @keyframes scrollPartnersLeft {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(0);
            }
        }

        @keyframes scrollPartnersRight {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

 @media (max-width: 768px) {
    .hospitality-partners {
        padding: 60px 0;
    }

    .partners-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .partner-card {
        min-width: 220px;
        height: 100px;
    }

    .partners-carousel-left,
    .partners-carousel-right {
        gap: 20px;
        animation-duration: 40s;
    }
}


/* FAQ Section */
.faq-section {
    background: #0A1421;
    color: white;
    padding: 80px 60px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    padding: 20px 0;
    gap: 20px;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 0;
}

.faq-answer-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    padding-right: 40px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 0 20px 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-text {
        font-size: 0.9rem;
        padding-right: 20px;
    }
}


/* Footer Section - Mobile Centered Layout */
.footer {
    background: linear-gradient(135deg, #1a3b73 0%, #0f1b3b 100%);
    color: white;
    padding: 60px 60px 40px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop Layout */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    line-height: 1.2;
}

.logo-icon {
    font-size: 2.5rem;
    filter: brightness(1.2);
}

.logo-icon .img {
    height : 50px;
    width : 57px;
}

.brand-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: #b8bcc8;
    margin-left: 8px;
}

.footer-tagline {
    color: #b8bcc8;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column ul li a {
    color: #b8bcc8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: #4CAF50;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3a5a94 20%, #3a5a94 80%, transparent 100%);
    margin: 40px 0;
}

/* .footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
} */

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8bcc8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    color: #8a94a6;
    max-width: 700px;
}

.copyright-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-office {
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-registration {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.rating-stars {
    color: #FFA500;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.google-text {
    color: #4285F4;
    font-size: 0.8rem;
    font-weight: 500;
}

.certifications {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-item {
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: scale(1.05);
}

.cert-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.payment-label {
    font-size: 0.8rem;
    color: #b8bcc8;
    text-align: center;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    align-items: center;
}

.payment-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.95);
}

.payment-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}


/* Mobile Responsive - Centered Layout */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
        text-align: center;
    }
    
    /* Footer Top - Centered */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        order: 1;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.8rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 100%;
        order: 2;
    }
    
    .footer-column h3 {
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .footer-column ul {
        gap: 10px;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    
    /* Footer Middle - Centered */
    .footer-middle {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        order: 1;
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-copyright {
        order: 2;
        max-width: 100%;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .footer-office,
    .footer-registration {
        font-size: 0.75rem;
    }
    
    /* Footer Bottom - Centered Stack */
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-review {
        order: 1;
    }
    
    .rating-number {
        font-size: 1.4rem;
    }
    
    .rating-stars {
        font-size: 0.85rem;
    }
    
    .google-text {
        font-size: 0.75rem;
    }
    
    .certifications {
        order: 2;
        gap: 15px;
        justify-content: center;
        max-width: 100%;
    }
    
    .cert-image {
        width: 50px;
        height: 50px;
    }
    
    .payment-methods {
        order: 3;
        gap: 15px;
    }
    
    .payment-label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .payment-icon {
        height: 20px;
    }
}

/* Small Mobile (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(4, 1fr);
        max-width: 320px;
    }
}

/* Mobile Small (361px to 480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .footer {
        padding: 35px 15px 25px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .brand-suffix {
        margin-left: 0;
        font-size: 0.9rem;
    }
    
    .footer-tagline {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .certifications {
        gap: 12px;
    }
    
    .cert-image {
        width: 45px;
        height: 45px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        max-width: 240px;
    }
    
    .payment-icon {
        height: 18px;
    }
    
    .copyright-text {
        font-size: 0.75rem;
    }
    
    .footer-office,
    .footer-registration {
        font-size: 0.7rem;
    }
}

/* Mobile Extra Small (320px to 360px) */
@media (min-width: 320px) and (max-width: 360px) {
    .footer {
        padding: 30px 10px 20px;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .footer-links {
        max-width: 220px;
        gap: 18px;
    }
    
    .footer-column h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-column ul {
        gap: 8px;
    }
    
    .footer-column ul li a {
        font-size: 0.75rem;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .rating-number {
        font-size: 1.2rem;
    }
    
    .rating-stars {
        font-size: 0.8rem;
    }
    
    .certifications {
        gap: 10px;
    }
    
    .cert-image {
        width: 40px;
        height: 40px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        max-width: 200px;
    }
    
    .payment-icon {
        height: 16px;
    }
    
    .payment-label {
        font-size: 0.75rem;
    }
    
    .copyright-text {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .footer-office,
    .footer-registration {
        font-size: 0.65rem;
    }
}

/* Ultra Small (below 320px) */
@media (max-width: 319px) {
    .footer {
        padding: 25px 8px 18px;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.65rem;
    }
    
    .footer-links {
        max-width: 200px;
        gap: 15px;
    }
    
    .footer-column h3 {
        font-size: 0.85rem;
    }
    
    .footer-column ul li a {
        font-size: 0.7rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .cert-image {
        width: 35px;
        height: 35px;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 160px;
    }
    
    .payment-icon {
        height: 14px;
    }
    
    .copyright-text {
        font-size: 0.65rem;
    }
    
    .footer-office,
    .footer-registration {
        font-size: 0.6rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .footer {
        padding: 80px 80px 50px;
    }
    
    .footer-top {
        gap: 100px;
    }
    
    .footer-links {
        gap: 80px;
    }
    
    .footer-logo {
        font-size: 2.2rem;
    }
    
    .cert-image {
        width: 70px;
        height: 70px;
    }
}

/* Tablet (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 60px 40px 40px;
    }
    
    .footer-top {
        gap: 60px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .footer {
        background: white !important;
        color: black !important;
        padding: 20px !important;
        text-align: left !important;
    }
    
    .footer-logo,
    .footer-column h3 {
        color: black !important;
    }
    
    .footer-column ul li a {
        color: #333 !important;
    }
    
    .social-icons,
    .payment-methods {
        display: none !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}


/* Modal (hidden by default) */
    .modal { 
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      display: flex; 
      justify-content: center; 
      align-items: center;
      backdrop-filter: blur(3px);
    }

    /* Modal Content */
    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      width: 300px;
      text-align: center;
      position: relative;
    }

    /* Close button */
    .close {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 24px;
      cursor: pointer;
    }

    input, button {
      width: 90%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    button {
      background: #007bff;
      color: white;
      border: none;
      cursor: pointer;
    }

    button:hover {
      background: #0056b3;
    }



/* Countdown Section */
.countdown-section {
/*  background: #1a4d3a;*/
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  margin-top: 110px;
}

.countdown-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-box {
  background: rgb(0 0 0 / 60%);
  padding: 15px 18px;
  border-radius: 10px;
  min-width: 70px;
  flex: 1 1 90px;
  max-width: 120px;
}

.time-box span {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

.time-box small {
  font-size: 0.75rem;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ✅ Tablet adjustments */
@media (max-width: 768px) {
  .countdown-container {
    gap: 15px;
  }
  .time-box span {
    font-size: 1.6rem;
  }
}

/* ✅ Mobile: 2 boxes per row */
@media (max-width: 480px) {
  .countdown-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
  }
  .time-box {
    max-width: 100%;
  }
  .time-box span {
    font-size: 1.5rem;
  }
}




.review-cert-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000403;
  /*backdrop-filter: blur(15px);*/
  padding: 5px 20px;
  z-index: 20;
}

.review-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px; /* tighter gap */
  align-items: stretch; /* force equal heights */
}

.review-cert-item {
  /*background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px; /* keeps all cards same height */
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.review-cert-item:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Logos */
.review-cert-image {
  max-width: 176px;
  max-height: 81px;
  object-fit: contain;
  opacity: 0.9;
}


/* Google Review styled compact */
.review-cert-google {
  text-align: center;
  color: #fff;
  line-height: 1.2; /* tighter spacing */
}

.review-rating {
  font-size: 1.2rem;
  font-weight: 600;
}

.review-stars {
  color: #FFA500;
  font-size: 0.9rem;
  margin: 2px 0;
}

.review-text {
  font-size: 0.75rem;
  color: #ccc;
}
