/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #4A79BC;
    --secondary-color: #3072D9;
    --text-color: #242424;
    --bg-color: #f8f9fa;
    --hero-text: 38px;
    --main-text: 20px;
    --secondary-text: 16px;
    --tertiary-text: 14px;
    --main-font-weight: 600;
    --secondary-font-weight: 400;
    --tertiary-font-weight: 300;
    --line-height-hero: 2.6rem;
    --button-color: #3072D9;
    --button-text: 30px;
  }

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}




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



/* Header Styles */

.header{
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.container-header {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: auto;
    
}

.logo {
    width: 120px;
}
.logo img{
    width: 100%;
}

.right-section{
    
    max-width: 500px;
    display: none;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}
.right-img{
    padding-top: 10px;
    width: 250px;
}
.right-img img{
    width: 100%;
}
.right-content h1{
    color: var(--primary-color);
    line-height: 1.5rem;
    font-size: var(--main-text);
    font-weight: var(--secondary-font-weight);
}


.hero-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}
.left-section-hero{
    display: flex;
    margin: auto;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
}

.left-section-hero h1{
    font-size: var(--hero-text);
    font-weight: var(--main-font-weight);
    color: var(--primary-color);
    line-height: var(--line-height-hero);
}

.left-section-hero h2{
    font-size: var(--main-text);
    font-weight: var(--secondary-font-weight);
    color: var(--primary-color);
    line-height: var(--line-height-hero);
}
.phone-booking h3{
    font-size: var(--secondary-text);
    font-weight: var(--secondary-font-weight);
    color: var(--text-color);
    padding-bottom: 20px;
    line-height: var(--line-height-hero);
}

.phone-number{
    font-size: var(--button-text);
    font-weight: var(--main-font-weight);
   background-color: var(--button-color);
   color: white;
   padding: 12px 22px;
   border-radius: 5px;
   text-decoration: none;
   text-align: center;
}




.accreditation {
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.header-right {
    text-align: right;
}

.tagline h2 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: normal;
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 25px;
}

.agent-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-indicator img {
    width: 20px;
    height: 20px;
}

.agent-indicator span {
    font-size: 12px;
    font-weight: bold;
}

/* Navigation */
.navigation {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1e3c72;
}

/* Services Section */
.services-section {
    background: white;
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    padding: 30px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 18px;
    color: #1e3c72;
}

/* Search Section */
.search-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.search-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto 40px;
}

.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.passengers {
    margin-bottom: 20px;
}

.passengers select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.field-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.field-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.digital-turbulence {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.digital-turbulence p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.phone-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phone-call a {
    font-size: 28px;
    color: #1e3c72;
    text-decoration: none;
    font-weight: bold;
}

.phone-call span {
    color: #666;
    font-size: 14px;
}

/* Features Section */
.features-section {
    background: white;
    padding: 60px 0;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 15px;
}

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

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
    padding: 60px 0;
}

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

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

.benefit-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 18px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 40px;
}

.testimonial-list ul {
    list-style: none;
    text-align: left;
}

.testimonial-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.testimonial-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.testimonial-phone a {
    font-size: 24px;
    color: #1e3c72;
    text-decoration: none;
    font-weight: bold;
}

/* Helpline Section */
.helpline-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.helpline-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.agent-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-flex;
}

.agent-status img {
    width: 25px;
    height: 25px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.company-info h4 {
    color: #3498db;
    margin-bottom: 10px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 10px;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #3498db;
    text-decoration: none;
    margin-right: 15px;
}

.copyright {
    color: #bdc3c7;
    font-size: 14px;
}

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer h4 {
    color: #ecf0f1;
    margin-bottom: 10px;
}

.disclaimer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.disclaimer li {
    margin-bottom: 8px;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.popup-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-popup {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.popup-header img {
    width: 30px;
    height: 30px;
}

.popup-header h3 {
    color: #1e3c72;
    font-size: 18px;
}

.popup-body h2 {
    color: #e74c3c;
    font-size: 20px;
    margin-bottom: 10px;
}

.popup-body p {
    margin-bottom: 15px;
    color: #666;
}

.rating {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 20px;
}

.popup-phone {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s;
}

.popup-phone:hover {
    transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    z-index: 999;
}

.right-sections{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {




    .container-header {
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 20px;
        justify-content: center;
        margin: auto;
        
    }
    .right-content h1 {
        color: var(--primary-color);
        line-height: 1.2rem;
        font-size: var(--secondary-text);
        font-weight: var(--secondary-font-weight);
    }
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h2 {
        font-size: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-fields {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .phone-number a {
        font-size: 24px;
    }
    
    .search-form {
        padding: 20px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
        font-size: 12px;
    }
}

/* --- HERO SECTION CUSTOM STYLES --- */
.agent-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    padding: 4px 22px 4px 4px;
    width: fit-content;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.agent-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #2ecc40;
    object-fit: cover;
    background: #fff;
}
.agent-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.subheadline-wrap {
    margin: 10px 0 0 0;
    position: relative;
    width: fit-content;
}
.subheadline {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}
.subheadline-underline {
    width: 100%;
    height: 6px;
    background: #FFC72C;
    border-radius: 3px;
    margin-top: 4px;
}

.phone-booking-label {
    display: block;
    font-size: 18px;
    color: #1a2a3a;
    margin: 18px 0 10px 0;
    font-weight: 600;
    font-style: italic;
}

.phone-number-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #F5A623;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    border-radius: 6px;
    padding: 12px 32px;
    text-decoration: none;
    margin: 0 0 18px 0;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
.phone-number-box:hover {
    background: #e09c1b;
}
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-number-text {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.hero-bullets {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}
.hero-bullets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-bullets li {
    font-size: 20px;
    font-weight: 600;
    color: #17406a;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}
.bullet-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #FFC72C;
    border-radius: 50%;
    margin-right: 8px;
}

/* Responsive adjustments for hero section */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .right-section-hero {
        width: 100%;
        text-align: center;
    }
    .right-section-hero img {
        max-width: 90vw;
        height: auto;
    }
}
@media (max-width: 600px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100vw;
        min-height: 100vh;
        background: linear-gradient(rgb(10 40 100 / 0%), rgba(10, 40, 100, 0.95)), url(../images/Image22.webp) center center / cover no-repeat;
        position: relative;
        padding: 0;
        background-position: right;
    }
    .left-section-hero {
        width: 100vw;
        padding: 32px 18px 0 18px;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 2;
    }
    .agent-badge {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 32px;
        border: 3px solid #1e4a8a;
        padding: 4px 18px 4px 4px;
        margin-bottom: 24px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        position: relative;
        bottom: 50px;
    }
    .agent-img {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 4px solid #f9a825;
        object-fit: cover;
        background: #fff;
        margin-right: 8px;
        position: relative;
    }
    .agent-badge::after {
        content: '';
        position: absolute;
        left: 44px;
        top: 44px;
        width: 14px;
        height: 14px;
        background: #2ecc40;
        border: 2px solid #fff;
        border-radius: 50%;
        z-index: 2;
    }
    .agent-text {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e4a8a;
        letter-spacing: 0.5px;
        background: #1e4a8a;
        color: #fff;
        border-radius: 22px;
        padding: 8px 18px;
        margin-left: 6px;
        display: flex;
        align-items: center;
    }
    .left-section-hero h1 {
        color: #fff;
        font-size: 2.1rem;
        font-weight: 800;
        line-height: 2.5rem;
        margin-bottom: 18px;
        text-align: left;
        width: 100%;
    }
    .subheadline-wrap {
        width: 100%;
        margin-bottom: 10px;
    }
    .subheadline {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        text-align: left;
    }
    .subheadline-underline {
        width: 120px;
        height: 6px;
        background: #f9a825;
        border-radius: 3px;
        margin-top: 4px;
        margin-bottom: 18px;
    }
    .phone-booking-label {
        color: #fff;
        font-size: 1.1rem;
        font-style: italic;
        font-weight: 600;
        margin:0px 0px 10px 50px;
        text-align: center;
        display: block;
    }
    .phone-number-box {
        background: #3b5fa8;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        border-radius: 8px;
        padding: 18px 0;
        width: 100%;
        justify-content: center;
        margin: 0 0 10px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
    }
    .phone-number-box .phone-icon {
        margin-right: 10px;
    }
    .phone-number-text {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 1px;
    }
    .phone-number-box::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        height: 6px;
        background: #f9a825;
        border-radius: 3px;
        width: 100%;
    }
    .hero-bullets {
        display: flex;
        flex-wrap: wrap;
        gap: 0 24px;
        margin-top: 18px;
        width: 100%;
        justify-content: flex-start;
    }
    .hero-bullets ul {
        list-style: none;
        padding: 0;
        margin: 0 24px 0 0;
        min-width: 120px;
    }
    .hero-bullets li {
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        gap: 8px;
    }
    .bullet-dot {
        display: inline-block;
        width: 18px;
        height: 18px;
        background: #fff;
        border-radius: 3px;
        margin-right: 8px;
    }
    .right-section-hero {
        display: none;
    }
}

/* Laurel Feature Section */
.laurel-feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 70px 0;
    background: #fff;
    
}
.laurel-img {
    width: 70px;
    height: auto;
    flex-shrink: 0;
    filter: none;
}
.laurel-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
}
.laurel-feature {
    text-align: left;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 0;
}
.laurel-feature h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    word-break: break-word;
}
.laurel-feature p {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    word-break: break-word;
}

@media (max-width: 900px) {
    .laurel-feature-section {
        flex-direction: column;
        gap: 10px;
    }
    .laurel-features {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .laurel-img {
        margin: 0 !important;
    }
}
@media (max-width: 600px) {
    .laurel-feature h3 {
        font-size: 1.1rem;
    }
    .laurel-feature p {
        font-size: 0.95rem;
    }
    .laurel-img {
        width: 40px;
    }
}

/* Card Feature Section */
.card-feature-section {
    background: #fff;
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: center;
}
.card-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}
.feature-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    transition: box-shadow 0.2s;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.feature-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    display: block;
}
.feature-card-body {
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
}
.feature-card-body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
    text-align: center;
}
.feature-card-body p {
    font-size: 1.05rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 28px;
    text-align: center;
    line-height: 1.5;
}
.feature-card-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 10px 32px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(19,163,199,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.feature-card-btn:hover {
    background: #0e7fa0;
    box-shadow: 0 4px 16px rgba(19,163,199,0.18);
}
.btn-icon {
    display: flex;
    align-items: center;
}

@media (max-width: 1100px) {
    .card-features {
        gap: 20px;
    }
    .feature-card {
        width: 300px;
    }
    .feature-card-img {
        height: 160px;
    }
}
@media (max-width: 900px) {
    .card-features {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .feature-card {
        width: 90vw;
        min-width: 0;
    }
}

/* Common section padding for all main sections */
.section-padding {
    padding: 90px 0;
}

/* Adjust specific sections if needed for mobile */
@media (max-width: 600px) {
    .section-padding {
        padding: 48px 0;
    }
}

/* Hide/show laurel sections based on device */
/* .desktop-only { display: block; } */
.mobile-only { display: none; }

@media (max-width: 600px) {
  .desktop-only { display: none !important; }
  /* .mobile-only { display: block !important; } */

  .laurel-feature-section-mobile {
    background: #fff;
    padding: 40px 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .laurel-feature-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    gap: 0;
  }
  .laurel-feature-mobile .laurel-img {
    width: 40px;
    min-width: 40px;
    height: auto;
  }
  .laurel-feature-mobile .laurel-left {
    margin-right: 8px;
  }
  .laurel-feature-mobile .laurel-right {
    margin-left: 8px;
  }
  .laurel-feature-mobile .laurel-feature-content {
    text-align: left;
    margin: 0 10px;
    width: auto;
    max-width: 65vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .laurel-feature-mobile .laurel-feature-content h3 {
    font-size: var(--main-text);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.1;
    text-align: left;
    word-break: break-word;
  }
  .laurel-feature-mobile .laurel-feature-content p {
    font-size: var(--secondary-text);
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    text-align: left;
    word-break: break-word;
  }
}

.laurel-mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 0 auto;
  width: 80vw;
  max-width: 340px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 28px;
  background: var(--button-color);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(19,163,199,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.laurel-mobile-call-btn:hover {
  background: #225ea8;
  box-shadow: 0 4px 16px rgba(19,163,199,0.18);
}
@media (max-width: 600px) {
  .laurel-mobile-call-btn {
    margin: 32px auto 0 auto;
    width: 90vw;
    max-width: 340px;
    font-size: 1.1rem;
    padding: 14px 0;
  }
}

.limited-offer-section {
    width: 100%;
    max-width: 1200px;
    margin: auto;
  padding: 20px 0;
}
.limited-offer-bg {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: url('../images/offerimage.jpg') right center/cover no-repeat;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.limited-offer-content {
  padding: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}
.limited-offer-discount {
  font-family: 'Dancing Script', cursive, Arial, sans-serif;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.18);
}
.limited-offer-title {
  font-size: var(--hero-text);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.18);
}
.limited-offer-sub {
  font-size: var(--secondary-text);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: 2px;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.18);
}
.limited-offer-btn {
  background: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 28px;
  padding: 20px 70px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(19,163,199,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.limited-offer-btn:hover {
  background: #225ea8;
}

@media (max-width: 900px) {
  .limited-offer-content {
    padding: 32px 18px 32px 18px;
    max-width: 100vw;
  }
  .limited-offer-title {
    font-size: 2.1rem;
  }
  .limited-offer-sub {
    font-size: 1.2rem;
  }
  .limited-offer-discount {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .limited-offer-bg {
    min-height: 220px;
    border-radius: 10px;
    background-position: center center;
  }
  .limited-offer-content {
    /* padding: 24px 100px 24px 8px; */
    max-width: 100vw;
  }
  .limited-offer-title {
    font-size: 1.3rem;
  }
  .limited-offer-sub {
    font-size: 1rem;
  }
  .limited-offer-discount {
    font-size: 1rem;
  }
  .limited-offer-btn {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .limited-offer-section {
    
    padding: 20px 20px;
}
}

.footer-simple {
  background: var(--primary-color, #1793a6);
  padding: 18px 0;
  width: 100%;
}
.footer-simple-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: inherit;
}
.footer-simple-left {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  text-align: left;
  font-family: inherit;
}
.footer-simple-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer-simple-right a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.2s;
}
.footer-simple-right a:hover {
  color: #FFC72C;
}
@media (max-width: 900px) {
  .footer-simple-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-simple-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-simple-left {
    text-align: center;
  }
 
}
.card-feature-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

  }

.simple-page-section {
  max-width: 800px;
  margin: 40px auto 60px auto;
  padding: 32px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.simple-page-section h1 {
  color: var(--primary-color);
  font-size: var(--hero-text);
  font-weight: 700;
  margin-bottom: 18px;
  font-family: inherit;
}
.simple-page-section p {
  color: var(--text-color);
  font-size: var(--main-text);
  font-weight: 400;
  line-height: 1.7;
  font-family: inherit;
} 




.new-book{
    color:#fff;
    text-decoration: none;
}