/* ===== NAVIGATION ===== */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/* ===== HEADER ===== */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

/* Container */
.container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
}

/* Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    /* Controlled professional height */
}

/* ===== LOGO ===== */
.logo img {
    height: 200px;
    /* FIXED (was 300px) */
    width: auto;
}

/* ===== NAV MENU ===== */
.nav-menu {
    text-align: center;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-top {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.nav-bottom {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-top: 6px;
}

.nav-menu a {
    text-decoration: none;
    color: #1d2939;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #cbaa5c;
}

.highlight a {
    color: #cbaa5c;
}

/* ===== RIGHT SECTION ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Contact Box */
.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-number {
    font-size: 18px;
    /* Reduced */
    font-weight: 700;
    color: #1d2939;
}

.book-wrapper {
    margin-top: 6px;
}

.book-btn {
    background: #cbaa5c;
    padding: 8px 20px;
    /* Reduced */
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #b79a4a;
}

/* Icons */
.icons {
    display: flex;
    gap: 15px;
}

.icon img {
    width: 20px;
    /* Reduced from 35px */
}

/* ===== MOBILE CONTROLS ===== */
.mobile-controls {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .nav-wrapper {
        height: 95px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 10px;
        background: #f8f8f8;
        padding: 15px 0;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-top,
    .nav-bottom {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .nav-right {
        display: none;
    }

    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-call-btn {
        background: #cbaa5c;
        color: white;
        text-decoration: none;
        padding: 7px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
    }

    .menu-toggle {
        font-size: 24px;
        cursor: pointer;
    }
}
/* ===== HERO SLIDER ===== */

.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .slide img {
        height: 350px;
    }
}

/* ===== INTRO SECTION ===== */

.intro-section {
    background: #f3f3f3;
    padding: 100px 20px;
    text-align: center;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-title {
    font-size: 60px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    margin-bottom: 40px;
    color: #222;
}

.intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    max-width: 850px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 16px;
    }

    .intro-section {
        padding: 60px 20px;
    }
}


/* ===== WHY SECTION ===== */

.why-section {
    background: #f3f3f3;
    padding: 100px 20px;
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.why-content {
    flex: 1;
}

.why-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    color: #777;
}

.why-title {
    font-size: 60px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    margin: 20px 0 20px;
    color: #222;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: #cbaa5c;
    margin-bottom: 30px;
}

.why-text {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 40px;
}

/* Contact Button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    background: #cbaa5c;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-btn .arrow {
    margin-left: 20px;
    font-size: 20px;
}

/* Right Image */
.why-image {
    flex: 1;
}

.image-frame {
    background: #e9e9e9;
    padding: 40px;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {

    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-title {
        font-size: 40px;
    }

    .gold-line {
        margin: 0 auto 30px;
    }

    .why-text {
        font-size: 16px;
    }

    .image-frame {
        padding: 20px;
    }

}

/* ===== DESTINATIONS SECTION ===== */

.destinations-section {
    background: #f3f3f3;
    padding: 100px 20px;
}

.destinations-header {
    text-align: center;
    margin-bottom: 70px;
}

.globe-icon {
    width: 80px;
    margin-bottom: 20px;
}

.destinations-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 55px;
    font-weight: 400;
    margin-bottom: 20px;
}

.destinations-header p {
    font-size: 18px;
    color: #444;
}

/* GRID */

.destinations-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.destination-card {
    background: white;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.destination-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin: 30px 0 10px;
}

.destination-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* BUTTON */

.explore-btn {
    background: #cbaa5c;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destinations-header h2 {
        font-size: 36px;
    }
}

/* ===== SERVICES SECTION ===== */

.services-section {
    background: #f3f3f3;
    padding: 100px 20px;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.services-content {
    flex: 1;
}

.services-title {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
}

.services-text {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
}

/* RIGHT */
.services-image {
    flex: 1;
}

.image-frame {
    background: #e9e9e9;
    padding: 40px;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {

    .services-container {
        flex-direction: column;
        text-align: center;
    }

    .services-title {
        font-size: 40px;
    }

    .services-text {
        font-size: 16px;
    }

    .image-frame {
        padding: 20px;
    }

}


/* ===== SERVICES GRID SECTION ===== */

.services-grid-section {
    background: #f3f3f3;
    padding: 100px 20px;
}

.services-grid-header {
    text-align: center;
    margin-bottom: 70px;
}

.small-title {
    letter-spacing: 5px;
    font-size: 13px;
    color: #777;
}

.services-grid-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 400;
    margin: 20px 0;
}

.center-line {
    margin: 0 auto;
}

/* GRID */

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* BOX */

.service-box {
    background: white;
    text-align: center;
    padding: 50px 20px;
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-box .icon {
    font-size: 40px;
    color: #cbaa5c;
    margin-bottom: 20px;
}

.service-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-svg {
    width: 45px;
    height: 45px;
    fill: #cbaa5c;
}

.service-box .icon {
    margin-bottom: 20px;
}
 
/* ============================= */
/* ===== BLOG SECTION ========= */
/* ============================= */

.blog-section {
    background: #f8f8f8;
    padding: 100px 0;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 60px;
}

/* ===== GRID ===== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* ===== CARD ===== */

.blog-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1d1d1d;
}

.meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.read-more:hover {
    color: #c7a34a;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .blog-section {
        padding: 70px 0;
    }

    .blog-card img {
        height: 200px;
    }
}

/* ===== PACKAGES SECTION ===== */

.packages-section {
    background: #f3f3f3;
    padding: 100px 20px;
}

.packages-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

/* COLUMN */

.package-column h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.package-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-column li {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.package-column li:hover {
    color: #cbaa5c;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .packages-container {
        grid-template-columns: 1fr;
    }

    .package-column h2 {
        font-size: 28px;
    }
}
/* ===== CONTACT CTA SECTION ===== */

.contact-cta-section {
    background: url("images/contact-bg.jpg") center/cover no-repeat;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.contact-cta-box {
    background: white;
    max-width: 1000px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Heading */

.contact-cta-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-cta-box .italic {
    font-style: italic;
}

.contact-cta-box em {
    font-style: italic;
}

/* Paragraph */

.contact-cta-box p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
}

/* Phone Line */

.cta-phone {
    font-size: 18px;
}

.cta-phone strong {
    font-weight: 600;
}

/* Button */

.cta-button {
    background: #cbaa5c;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background: #b79a4a;
}

@media (max-width: 768px) {

    .contact-cta-box {
        padding: 40px 30px;
    }

    .contact-cta-box h2 {
        font-size: 28px;
    }

    .contact-cta-box p {
        font-size: 15px;
    }

}
/* ===== AIRLINES SLIDER ===== */
.airlines-section {
    background: #f3f3f3;
    padding: 80px 20px;
}

.airlines-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.airlines-viewport {
    overflow: hidden;
}

.airlines-slider {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.airline-logo {
    min-width: 220px;
    background: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airline-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
}

.prev { left: -10px; }
.next { right: -10px; }

.slider-btn:hover {
    background: #cbaa5c;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {
    background: #f3f3f3;
    padding: 120px 20px;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    text-align: center;
}

/* CARD */

.testimonial-card {
    padding: 20px;
}

/* GOLD QUOTE ICON */

.quote-icon {
    width: 70px;
    height: 70px;
    background: #cbaa5c;
    color: white;
    border-radius: 50%;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: serif;
}

/* TEXT */

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

/* NAME */

.testimonial-name {
    letter-spacing: 6px;
    font-weight: 400;
    font-size: 14px;
}
@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* ===== FOOTER ===== */

.main-footer {
    background: #1f2f44;
    color: #d8d8d8;
    padding-top: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 20px 60px;
}

/* LOGO */

.footer-logo {
    max-width: 220px;
    margin-bottom: 25px;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 25px;
}

/* NEWSLETTER */

.newsletter {
    display: flex;
}

.newsletter input {
    padding: 12px;
    border: none;
    width: 70%;
}

.newsletter button {
    background: #cbaa5c;
    border: none;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
}

/* HEADINGS */

.footer-col h3 {
    color: #cbaa5c;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* LIST */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #cbaa5c;
}

/* CONTACT */

.footer-contact p {
    margin-bottom: 12px;
}

/* BOTTOM BAR */
/* ============================= */
/* FOOTER BOTTOM FIXED VERSION */
/* ============================= */

.footer-bottom {
    background: #0f2438;
    padding: 18px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* COPYRIGHT */
.footer-bottom .copyright {
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;   /* prevents breaking into 2 lines */
}

/* SOCIAL ICONS */
.footer-bottom .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;   
}

.footer-bottom .social-icons a {
    width: 36px;
    height: 36px;
    background: #000000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.footer-bottom .social-icons img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-bottom .social-icons a:hover {
    background: #cbaa5c;
}

/* PAYMENT LOGOS */
.footer-bottom .payment-logos img {
    width: 46px;
    height: 45px;
    object-fit: contain;
    background: #ffffff;
    padding: 5px 7px;
    border-radius: 6px;
    box-sizing: border-box;
}

/* SOCIAL ICONS PNG STYLE */

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #223852;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-icons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icons a:hover {
    background: #cbaa5c;
    transform: translateY(-3px);
}
/* SOCIAL ICONS WHITE BACKGROUND */

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: white;              /* white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-icons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Hover Effect */
.social-icons a:hover {
    background: #cbaa5c;
    transform: translateY(-3px);
}
/* SOCIAL ICONS WHITE BACKGROUND */

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: white;              /* white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-icons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Hover Effect */
.social-icons a:hover {
    background: #cbaa5c;
    transform: translateY(-3px);
}

 /* STICKY HEADER */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
}

/* Prevent content hiding under header */
body {
    padding-top: 120px; /* adjust if needed */
}

@media (max-width: 1200px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom .copyright {
        white-space: normal;
    }
}


@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }

    /* Container padding */
    .quote-section .container {
        padding: 0 15px;
    }

    /* Hero Fix */
    .hero-banner {
        height: 200px;
    }

    .hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Form rows stack */
    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    /* Make form groups full width */
    .form-group {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    /* Fix input overflow */
    .form-group input,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* prevents iPhone zoom */
    }

    /* Button full width */
    .submit-area {
        padding: 0 15px;
    }

    .gold-btn {
        width: 100%;
        max-width: 100%;
    }

}
/* ================================= */
/* ========= FOOTER MOBILE ========= */
/* ================================= */

@media (max-width: 768px) {

    /* Stack footer columns */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .footer-col {
        width: 100%;
    }

    /* Make lists visible */
    .footer-col ul {
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    /* Center newsletter */
    .newsletter {
        justify-content: center;
    }

    /* Fix footer bottom stacking */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom .payment-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Consent Box */
.consent-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Header */
.consent-header {
    background: #cbaa5c;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.collapse-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Content */
.consent-content {
    padding: 15px;
}

.consent-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* Button */
.accept-btn {
    width: 100%;
    background: #cbaa5c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.accept-btn:hover {
    background: #255b91;
}

/* Links */
.consent-links {
    text-align: center;
    margin-top: 10px;
}

.consent-links a {
    font-size: 12px;
    color: #2f6fb2;
    text-decoration: none;
    margin: 0 8px;
}

.consent-links a:hover {
    text-decoration: underline;
}

/* Collapsed State */
.consent-box.collapsed .consent-content {
    display: none;
}

/* Mobile */
@media (max-width: 480px) {
    .consent-box {
        width:40%;
        left: 5%;
        bottom: 15px;
    }
}
 

/* ============================= */
/* ===== 320px HEADER FIX ===== */
/* ============================= */

@media (max-width: 360px) {

    /* Reduce header height */
    .main-header {
        padding: 15px 0;
    }

    /* Reduce body padding for sticky header */
    body {
        padding-top: 80px;
    }

    /* Adjust wrapper */
    .nav-wrapper {
        align-items: center;
    }

    /* Smaller logo */
    .logo img {
        height: 175px;
    }

    /* Mobile controls tighter */
    .mobile-controls {
        gap: 6px;
    }

    /* Smaller CALL button */
    .mobile-call-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Smaller hamburger */
    .menu-toggle {
        font-size: 22px;
    }

    /* Dropdown menu spacing */
    .nav-menu {
        margin-top: 10px;
        padding: 15px 0;
    }

    .nav-top,
    .nav-bottom {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

.extra-post {
    display: none;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c7a54a;
    /* Your gold theme */
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link:hover .service-box {
    transform: translateY(-5px);
    transition: 0.3s ease;
}
.package-column ul {
    list-style: none;
    padding: 0;
}

.package-column li {
    margin-bottom: 12px;
}

.package-column a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    transition: 0.3s;
}

.package-column a:hover {
    color: #c5a253;
    /* your gold color */
    padding-left: 6px;
}
/* Hide blog cards after 3rd */
.blog-card {
    display: none;
}

/* Show first 3 cards */
.blog-card:nth-child(-n+3) {
    display: block;
}

/* Optional smooth appearance */
.blog-card.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.newsletter form {
    display: flex;
}

.newsletter input {
    padding: 10px;
    width: 220px;
    border: none;
}

.newsletter button {
    padding: 10px 15px;
    background: gold;
    border: none;
    cursor: pointer;
}
.social-icons {
    display: flex;
    gap: 15px;
}

.social-svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    transition: 0.3s ease;
}

.social-icons a:hover .social-svg {
    fill: gold;
    transform: scale(1.2);
}
.slide {
    position: relative;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.slide-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #caa44c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.slide-btn:hover {
    background: #b8933f;
}
 .certification-logos {
     display: flex;
     justify-content: center;
     /* centers them */
     align-items: center;
     gap: 30px;
     /* space between images */
     margin-top: 20px;
 }

 .certification-logos img {
     width: 90px;
     /* adjust size */
     height: auto;
     transition: transform 0.3s ease;
 }

 .certification-logos img:hover {
     transform: scale(1.05);
     /* small hover effect */
 }