/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --primary-color: #fcbe2f;
    --secondary-color: #fe877b;
    --gradient-primary: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    --gradient-secondary: linear-gradient(135deg, #fe877b 0%, #fcbe2f 100%);
    --text-dark: #262626;
    --text-light: #6B7280;
    --text-lighter: #BFBFBF;
    --bg-light: #f5f5f0;
    --white: #ffffff;
    --black: #030712;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

section {
    overflow-x: visible !important;
}


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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Prevent horizontal scroll on all sections */
section {
    overflow-x: hidden;
    width: 100%;
}

.container-fluid {
    overflow-x: hidden;
}

/* Fix for rows causing overflow */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* ============================================
   CUSTOM CURSOR (dot + ring)
   ============================================ */

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    pointer-events: none;
    will-change: transform;
    transition: opacity 0.3s, color 0.4s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #000;
    background: transparent;
    transform: scale(0);
    transition: transform 0.3s ease-out, opacity 0.3s;
}

.cb-cursor.-visible::before {
    transform: scale(1);
}

.cb-cursor-dot {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.cb-cursor-text {
    display: none;
}

@media (max-width: 991px) {
    .cb-cursor {
        display: none !important;
    }
    body {
        cursor: auto;
    }
}


/* ============================================
   NAVIGATION / HEADER
   ============================================ */

.navbar {
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

/* Smaller logo on scroll (optional) */
.navbar.scrolled .navbar-brand img {
    height: 60px;
}

.navbar.scrolled {
    padding: 10px 0;
}

/* Navigation Links */
.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-collapse {
        margin-top: 15px;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
    
    .navbar .btn-gradient {
        margin-top: 15px;
        width: 100%;
    }
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 14px 40px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

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

.btn-gradient,
.btn-gradient-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.btn-gradient:hover,
.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 190, 47, 0.3);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 45px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}

.btn-white:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-white-solid {
    background: transparent;
    color: var(--white);
    padding: 16px 45px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-outline-white-solid:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-dark {
    padding: 14px 50px;
    border: 2px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.floating-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.floating-btn:hover::after {
    width: 100px;
    height: 100px;
}

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

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.booking-btn {
    background: var(--gradient-primary);
}

.booking-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   HERO BANNER SECTION
   ============================================ */

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    overflow-x: hidden !important;
}

.hero-banner video,
.hero-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(252, 190, 47, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 950px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 45px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Alternate section backgrounds */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.packages-section {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-section {
    padding: 100px 0;
    background: #dde6e4;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    position: relative;
    overflow: hidden;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.service-card {
    background: var(--white);
    border-radius: 0;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e8e8e8;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--service-bg); /* NEW */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 190, 47, 0.45), rgba(254, 135, 123, 0.45));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.service-card .glossy-sweep {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.7s ease;
}

.service-card:hover .glossy-sweep {
    left: 150%;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-content {
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.service-card:hover .service-content {
    color: var(--white);
}

.service-card:hover .service-content h3,
.service-card:hover .service-content p {
    color: var(--white);
}

.service-card:hover{
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-dark);
    transition: all 0.4s ease;
    letter-spacing: 0.3px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.service-card:hover .service-link {
    color: var(--white);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   WORKING PROCESS SECTION - 5 STEPS WITH HTML ARROWS
   ============================================ */

.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-section .row {
    position: relative;
}

.process-section .col-lg-2 {
    position: relative;
}

.process-step-5 {
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Number badge at top-right */
.step-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(252, 190, 47, 0.3);
}

/* Main icon circle */
.step-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-icon-circle i {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step-5:hover .step-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(252, 190, 47, 0.3);
}

.step-title-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.arrow-connector {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #d0d0d0;
    z-index: 1;
}

.step-connector-mobile {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .arrow-connector {
        display: none;
    }
    
    .process-step-5 {
        margin-bottom: 30px;
    }
}

/* mobile tweaks */
@media (max-width: 767.98px) {
    .process-section .row {
        justify-content: center;
    }

    .process-step-5 {
        margin-bottom: 0px;
        padding-top: 45px;
        padding-bottom: 10px;
    }

    .step-icon-circle {
        margin-bottom: 12px;
    }

    .step-title-text {
        font-size: 1rem;
    }
    .step-badge {
        top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .step-badge {
        top: auto;
        bottom: -14px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .step-connector-mobile {
        display: block;
        margin: 12px auto 4px;
        width: 3px;
        height: 28px;
        background: #d0d0d0;
        position: relative;
    }

    .step-connector-mobile::after {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 11px;
        height: 11px;
        border-right: 3px solid #d0d0d0;
        border-bottom: 3px solid #d0d0d0;
    }
}


@media (max-width: 576px) {
    .step-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-badge {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        top: 5px;
        right: 10px;
    }
    
    .step-title-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages-section {
    padding: 100px 0;
    background: var(--white);
}

.packages-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.package-slide {
    padding: 0 15px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Package Header */
.package-header {
    text-align: center;
    padding: 35px 20px;
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    color: white;
    flex-shrink: 0;
}

.package-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 15px 0 10px;
    color: white;
}

.package-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
    color: white;
}

/* Package Content */
.package-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.package-item.border-0 {
    border-bottom: none;
}

.package-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.package-toggle:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.package-toggle .d-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.plus-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    flex-shrink: 0;
    font-weight: bold;
}

.plus-icon::before {
    content: '+';
    display: block;
    font-size: 24px;
    line-height: 1;
}

.package-item.active .plus-icon::before {
    content: '−';
}

.package-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.package-item.active .package-details {
    max-height: 2000px;
    padding-bottom: 20px;
}

.package-list {
    list-style: none;
    padding-left: 50px;
    padding-right: 25px;
    margin: 0;
}

.package-list li {
    color: #666;
    font-size: 0.93rem;
    padding: 8px 0;
    line-height: 1.8;
    position: relative;
}

.package-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Package Footer */
.package-footer {
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    flex-shrink: 0;
    margin-top: auto;
}

.package-footer .btn {
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel Navigation */
.packages-carousel .owl-nav {
    margin-top: 40px;
}

.packages-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.packages-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%) !important;
    border-color: transparent !important;
    color: white !important;
}

.packages-carousel .owl-nav button span {
    font-size: 30px;
    line-height: 1;
}

.packages-carousel .owl-dots {
    margin-top: 30px;
}

.packages-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.packages-carousel .owl-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Mobile - Fix white space issue */
@media (max-width: 991px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .package-slide {
        padding: 0 10px;
    }
    
    .package-card {
        height: auto !important;
    }
    
    .package-header {
        padding: 30px 15px;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
}


/* ============================================
   PORTFOLIO / GALLERY SECTION
   ============================================ */

.portfolio-section .section-header {
    margin-bottom: 20px;
}

.gallery-container {
    position: relative;
}

.gallery-main {
    position: relative;
    height: 55vh;
    max-height: 480px;
    min-height: 320px;
    margin-bottom: 20px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main::before {
    content: "";
    position: absolute;
    inset: -15px;
    background-image: var(--gallery-bg);
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.9;
    z-index: 1;
}

.gallery-main img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-quote {
    text-align: center;
    padding: 0;
    max-width: 900px;
    margin: 8px auto 6px;
}

.gallery-quote p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--text-dark);
    width: 35px;
    border-radius: 6px;
}

.explore-btn {
    margin-top: 28px;
    text-align: center;
}

.explore-btn .btn {
    padding: 16px 50px;
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    border-radius: 0;
    letter-spacing: 0.5px;
}

.explore-btn .btn:hover {
    background: var(--text-dark);
    color: var(--white);
}

@media (max-width: 767.98px) {
    .gallery-main {
        height: 45vh;
        max-height: 360px;
        margin-bottom: 16px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-quote p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 26px;
    letter-spacing: -0.5px;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.about-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.about-list li span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-btn {
    padding: 14px 36px;
    border-radius: 0;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.about-video-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-media-sticky {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    overflow: hidden;
    animation: about-rotate 16s linear infinite;
}

.about-badge::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
}

.about-badge-svg {
    width: 100%;
    height: 100%;
}

.about-badge-text {
    font-size: 23px;
    letter-spacing: 3px;
    fill: #ffffff;
    font-family: inherit;
}

.about-badge-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 1.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    line-height: 1.5;
    font-family: inherit;
}

@keyframes about-rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}


@media (max-width: 991.98px) {
    .about-section {
        padding: 70px 0;
    }

    .about-media-sticky {
        position: relative;
        top: 0;
        padding-left: 0;
        margin-top: 40px;
    }

    .about-bg-card {
        right: -10px;
        top: -20px;
        bottom: -20px;
        width: 80%;
    }

    .about-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -60px;
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    .about-badge {
        display: none !important;
    }
}

/* ============================================
   TESTIMONIALS - EQUAL HEIGHT CARDS
   ============================================ */

.testimonials-carousel .owl-item {
    display: flex;
}

.testimonial-item {
    display: flex;
    width: 100%;
    height: 100%;
}

.testimonial-content {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px; /* Set minimum height */
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.testimonial-content .stars {
    margin-bottom: 20px;
}

.testimonial-content .stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1; /* This makes the quote section flexible */
}

.testimonial-author {
    margin-top: auto; /* Push author to bottom */
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-author h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
    display: block;
}

.testimonial-author div {
    color: #fcbe2f;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Owl Carousel specific fixes */
.testimonials-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials-carousel .owl-item {
    display: flex;
}

/* ============================================
   FAQ SECTION - IMPROVED SPACING & COLORS
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-section .section-header {
    margin-bottom: 60px;
}

.accordion-item {
    background: white;
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.accordion-button {
    background: white;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) .faq-number {
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    width: 30px;
    height: 30px;
    background: #fcbe2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    content: '−';
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
}

.accordion-button.collapsed::after {
    content: '+';
    background: #e0e0e0;
    color: #333;
}

.accordion-button:not(.collapsed)::after {
    background: white;
    color: #fcbe2f;
    transform: none;
}

.faq-number {
    color: #fcbe2f;
    margin-right: 10px;
    font-weight: 700;
}

.accordion-body {
    padding: 25px 30px 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    background: white;
}

/* ============================================
   FOOTER - LOGO & STYLING
   ============================================ */

.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
   /* filter: brightness(0) invert(1);  Makes logo white if it's dark */
}

/* If your logo already has white/light color, remove the filter */
.footer-logo img.no-filter {
    filter: none;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Social Icons - Brand Colors */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Facebook Blue */
.social-links a:nth-child(1) {
    background: #1877f2;
}

.social-links a:nth-child(1):hover {
    background: #0d65d9;
}

/* Twitter Blue */
.social-links a:nth-child(2) {
    background: #1da1f2;
}

.social-links a:nth-child(2):hover {
    background: #0c8bd9;
}

/* Instagram Gradient */
.social-links a:nth-child(3) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a:nth-child(3):hover {
    transform: translateY(-3px) scale(1.05);
}

/* LinkedIn Blue */
.social-links a:nth-child(4) {
    background: #0077b5;
}

.social-links a:nth-child(4):hover {
    background: #005885;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fcbe2f;
    padding-left: 5px;
}

/* Contact Info - FIXED ALIGNMENT */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.contact-info li i {
    color: #fcbe2f;
    font-size: 1.2rem;
    width: 25px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info li span {
    flex: 1;
    line-height: 1.6;
}

/* Footer Bottom */
.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 30px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .footer-logo img {
        height: 50px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        margin-top: 20px;
    }
}

/* ============================================
   BOOKING MODAL - REDUCED WIDTH & CENTERED TITLE
   ============================================ */

#bookingModal .modal-dialog {
    max-width: 600px;
}

#bookingModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#bookingModal .modal-header {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    padding: 10px;
    text-align: center;
    justify-content: center;
    position: relative;
    padding-bottom: 16px !important;
}

#bookingModal .modal-title {
    color: white !important;
    font-size: 1.6rem !important;
    font-weight: 700;
    margin: 0 auto;
}

#bookingModal .btn-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
    opacity: 1;
}

#bookingModal .modal-body {
    padding: 10px 30px;
}

#bookingModal .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

#bookingModal .form-control,
#bookingModal .form-select {
    border: 2px solid #e0e0e0;
    padding: 6px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

#bookingModal .form-control:focus,
#bookingModal .form-select:focus {
    border-color: #fcbe2f;
    box-shadow: 0 0 0 0.2rem rgba(252, 190, 47, 0.15);
}

#bookingModal .btn-gradient {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#bookingModal .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(252, 190, 47, 0.4);
}

/* ============================================
   OWL CAROUSEL
   ============================================ */

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white) !important;
    color: var(--text-dark) !important;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.owl-carousel .owl-nav button:hover {
    background: var(--text-dark) !important;
    color: var(--white) !important;
    transform: translateY(-50%) scale(1.05);
}

.owl-carousel .owl-nav .owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav .owl-next {
    right: -25px;
}

.owl-carousel .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.owl-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    border-radius: 50%;
    margin: 0 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background: var(--text-dark);
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1199px) {
    .owl-carousel .owl-nav .owl-prev {
        left: 0;
    }
    
    .owl-carousel .owl-nav .owl-next {
        right: 0;
    }
}

@media (max-width: 991px) {
    body {
        cursor: default;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .package-card {
        height: 500px;
    }
    
    .process-step::after,
    .process-step-new::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .floating-buttons {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card,
    .process-step {
        margin-bottom: 20px;
    }
    
    .package-card {
        height: 450px;
    }
    
    .gallery-main {
        height: 400px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .package-card {
        padding: 25px 20px;
        height: 400px;
    }
    
    .gallery-main {
        height: 300px;
    }
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes glossy-sweep {
    0% { left: -50%; }
    100% { left: 150%; }
}


/* ============================================
   BLOG & INNER PAGES STYLES
   ============================================ */

/* Hero Section with Gradient */
.page-hero {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 0.95rem;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero .breadcrumb-item a:hover {
    color: white;
}

.page-hero .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.page-hero-content {
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Blog Card Modern */
.blog-card-modern {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-card-modern h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-modern h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-modern h3 a:hover {
    color: var(--primary-color);
}

.blog-card-modern p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* CTA Button - Read More */
.btn-read-more {
    background: var(--gradient-primary);
    color: white !important;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(252, 190, 47, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 190, 47, 0.4);
    gap: 14px;
    color: white;
    text-decoration: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
    list-style: none;
    padding: 0;
}

.page-item {
    list-style: none;
}

.page-link {
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.page-item.active .page-link {
    border-color: transparent;
    background: var(--gradient-primary);
    color: white;
}

.page-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-lighter);
    margin-bottom: 25px;
}

.empty-state h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   BLOG SINGLE PAGE STYLES
   ============================================ */

.breadcrumb-section {
    background: var(--bg-light);
    padding: 40px 0 30px;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-single-section {
    padding: 60px 0;
    background: var(--white);
}

.blog-single-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-single-header .blog-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-single-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.blog-single-header .blog-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--text-light);
}

.blog-featured-image {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Content Formatting */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-content h2 {
    font-size: 2.2rem;
}

.blog-content h3 {
    font-size: 1.8rem;
}

.blog-content h4 {
    font-size: 1.5rem;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-content ul,
.blog-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.15rem;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

.blog-content table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* Blog Share Section */
.blog-share {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.blog-share h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.share-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: transform 0.3s;
    color: white;
}

.share-buttons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-whatsapp {
    background: #25D366;
}

/* Preview Mode Banner */
.preview-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   INNER PAGE CONTENT SECTION
   ============================================ */

.page-content-section {
    padding: 80px 0;
    background: var(--white);
}

.page-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.page-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 18px;
}

.page-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.page-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Info Box / Highlight Box */
.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    margin-top: 0;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    font-size: 1rem;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 190, 47, 0.1);
}

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .page-hero p {
        font-size: 1.15rem;
    }
    
    .blog-grid-section {
        padding: 70px 0;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.05rem;
    }
    
    .page-hero::before,
    .page-hero::after {
        display: none;
    }
    
    .blog-single-header h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        font-size: 1rem;
    }
    
    .page-content-section {
        padding: 60px 0;
    }
    
    .pagination {
        gap: 5px;
        margin-top: 50px;
    }
    
    .page-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.9rem;
    }
    
    .blog-card-body {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}



/* ============================================
   PACKAGES SECTION - SIMPLE FIX
   ============================================ */

/* Keep carousel on mobile but force each slide height */
.packages-carousel .owl-stage-outer {
    transition: height 0.3s ease;
}

/* Mobile - individual heights */
@media (max-width: 991px) {
    /* Force recalculate height on each slide */
    .packages-carousel .owl-stage-outer {
        height: auto !important;
    }
    
    .packages-carousel .owl-stage {
        display: flex !important;
    }
    
    .packages-carousel .owl-item {
        height: auto !important;
    }
}

/* Desktop - equal heights */
@media (min-width: 992px) {
    .packages-carousel .owl-stage {
        display: flex !important;
    }
    
    .packages-carousel .owl-item {
        display: flex !important;
    }
    
    .package-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .package-content {
        flex-grow: 1;
    }
}

/* ============================================
   PACKAGES SECTION - MOBILE STACK
   ============================================ */

/* Mobile - Stack cards vertically (no carousel) */
@media (max-width: 767px) {
    .packages-carousel {
        display: block !important;
    }
    
    .package-slide {
        width: 100% !important;
        margin-bottom: 30px !important;
        padding: 0 15px !important;
    }
    
    .package-card {
        height: auto !important;
        min-height: auto !important;
    }
}

/* Tablet and Desktop - Equal heights with carousel */
@media (min-width: 768px) {
    .packages-carousel .owl-stage {
        display: flex !important;
    }
    
    .packages-carousel .owl-item {
        display: flex !important;
    }
    
    .package-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .package-content {
        flex-grow: 1;
    }
    
    .package-footer {
        margin-top: auto;
    }
}

/* Blog Single Hero */
.blog-single-hero {
    background: linear-gradient(135deg, #fcbe2f 0%, #fe877b 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.blog-single-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.blog-single-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}
.blog-hero-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 20px;
    justify-content: center;
}
.blog-hero-content .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.7);
}
.blog-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.blog-hero-content .breadcrumb-item.active {
    color: white;
}
.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}
.blog-hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

/* Sidebar Container */
.sidebar-col {
    position: relative;
}

/* Sidebar sticky */
.sidebar-sticky {
    position: sticky !important;
    top: 100px !important;
    z-index: 10;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #262626;
    position: relative;
    padding-bottom: 15px;
}
.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fcbe2f, #fe877b);
}

/* Contact form */
.contact-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
}
.contact-form .form-control:focus {
    border-color: #fcbe2f;
    box-shadow: 0 0 0 0.2rem rgba(252, 190, 47, 0.15);
    outline: none;
}
.success-msg {
    text-align: center;
    padding: 30px;
}
.success-msg i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
    display: block;
}

/* Latest blogs */
.latest-blog {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s;
}
.latest-blog:last-child {
    border-bottom: none;
}
.latest-blog:hover {
    transform: translateX(5px);
}
.latest-blog-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.latest-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-blog-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 5px;
    line-height: 1.3;
}
.latest-blog-date {
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 991px) {
    .blog-single-hero {
        padding: 100px 0 60px;
    }
    .blog-single-hero h1 {
        font-size: 2rem;
    }
    .sidebar-sticky {
        position: static !important;
        margin-top: 50px;
    }
}

/* ============================================
   MOBILE MENU UNDERLINE FIX
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse .nav-link {
        position: relative !important;
        padding: 15px 0 !important;
    }
    
    .navbar-collapse .nav-link::after {
        bottom: 0 !important;
        left: 0 !important;
        width: 0 !important;
        height: 2px !important;
        background: var(--gradient-primary) !important;
        transform: none !important;
        transition: width 0.3s ease !important;
    }
    
    .navbar-collapse .nav-link:hover::after,
    .navbar-collapse .nav-link.active::after {
        width: 100% !important;
        left: 0 !important;
    }
}

/* Ensure clean mobile menu spacing */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px 0;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        margin-top: 10px;
    }
    
    .navbar-nav {
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        font-weight: 600;
        font-size: 1rem;
        margin: 0 15px;
        border-radius: 8px;
        padding: 15px 20px !important;
    }
    
    /* FAQ active state */
    .navbar-nav .nav-link.active {
        background: var(--gradient-primary);
        color: white !important;
    }
}

@media (max-width: 767px) {
    .blog-content figure.table {
        overflow-x: auto !important;
        background: #f6f6f6;
        padding: 0 16px;
    }
    
    .blog-content figure.table table {
        min-width: 900px !important;
    }
    
    .blog-content figure.table colgroup col {
        min-width: 220px !important;
    }
}

