/* ============================================
   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: 'Roboto', -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;
}

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: 15px 0;
    transition: all 0.3s ease;
}

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

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

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

.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;
}

.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: 30px;
    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: 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: 12px 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: 15px;
    font-size: 1.1rem;
    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%; }
}



