/* =========================================================
   PIYUSH PUNJABI DHOLIS - WEDDING BAND ENTERTAINMENT
   Custom Stylesheet
   ========================================================= */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #B8001F;          /* Deep royal red */
    --primary-dark: #8B0017;
    --secondary: #D4AF37;        /* Royal gold */
    --secondary-dark: #B8941F;
    --accent: #FF6B35;           /* Marigold orange */
    --dark: #1A0F0F;             /* Deep wedding black */
    --dark-2: #2D1B1B;
    --light: #FFF8F0;            /* Warm ivory */
    --light-2: #FDF5E6;
    --gray: #6B5B5B;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(184, 0, 31, 0.08);
    --shadow-md: 0 8px 24px rgba(184, 0, 31, 0.12);
    --shadow-lg: 0 16px 40px rgba(184, 0, 31, 0.18);
    --gradient-primary: linear-gradient(135deg, #B8001F 0%, #8B0017 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 15, 15, 0.85) 0%, rgba(184, 0, 31, 0.75) 100%);
    --font-display: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
}

/* ===== GLOBAL RESET ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

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

.section-padding {
    padding: 90px 0;
}

/* ===== SECTION HEADING ===== */
.section-heading {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-script);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    position: relative;
    margin: 20px 0;
    border-radius: 2px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before { left: -15px; }
.section-divider::after { right: -15px; }

.section-subtitle {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-book {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--secondary);
}

.btn-book:hover {
    background: var(--gradient-primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--light);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 2px solid var(--secondary);
}

.top-bar-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-info li i {
    color: var(--secondary);
    margin-right: 6px;
}

.top-bar-info a {
    color: var(--light);
    transition: var(--transition-fast);
}

.top-bar-info a:hover {
    color: var(--secondary);
}

.top-bar-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== HEADER / NAVBAR ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1px 0;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(15deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    position: relative;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

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

/* ===== HERO CAROUSEL ===== */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 40px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--secondary) !important;
    width: 60px !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 1;
}

.carousel-control-icon {
    width: 55px;
    height: 55px;
    background: rgba(184, 0, 31, 0.7);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background: var(--secondary);
    color: var(--dark);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-image-wrap {
    position: relative;
    padding: 20px;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 3;
    border: 4px solid var(--secondary);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-radius: 20px;
    transform: translate(20px, 20px);
    z-index: 1;
    opacity: 0.4;
}

.about-text {
    font-size: 1.02rem;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--light-2) 100%);
    position: relative;
}

.service-category {
    text-align: center;
    margin: 40px 0 30px;
}

.category-title {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--primary);
    position: relative;
    padding: 8px 30px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--secondary);
}

.category-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.service-img {
    /* height: 230px; */
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 15, 15, 0.4) 100%);
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-text {
    color: var(--gray);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.btn-service {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-service:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateX(5px);
}

.service-card-special {
    background: linear-gradient(135deg, var(--white) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 2px solid var(--secondary);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    background: var(--white);
    position: relative;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: 0;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover h4,
.why-card:hover p {
    color: var(--white);
}

.why-card:hover .why-icon {
    background: var(--white);
    color: var(--primary);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.why-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background: url('../images/counter-bg.jpg') center/cover no-repeat fixed;
    padding: 80px 0;
    position: relative;
    color: var(--white);
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 15, 15, 0.92) 0%, rgba(184, 0, 31, 0.88) 100%);
}

.counter-section .container {
    position: relative;
    z-index: 1;
}

.counter-item {
    padding: 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.counter-item:hover .counter-icon {
    transform: rotateY(360deg);
}

.counter-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-item h5 {
    color: var(--white);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--light);
}

.step-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 0, 31, 0.08);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(-10deg);
}

.step-card h4 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.92rem;
    margin: 0;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 2.2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--light-2) 100%);
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0 20px;
}

.testimonial-quote {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    font-style: italic;
    margin: 20px 0 25px;
    line-height: 1.8;
}

.testimonial-rating {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
    letter-spacing: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

.author-info span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-control {
    width: auto;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
}

.testimonial-control i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-control:hover i {
    background: var(--gradient-gold);
    color: var(--dark);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--light);
}

.accordion-button {
    background: var(--white);
    font-weight: 600;
    color: var(--dark);
    padding: 20px 25px;
    font-size: 1.05rem;
    border: none;
    box-shadow: none !important;
    font-family: var(--font-display);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B8001F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    background: var(--white);
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, var(--light-2) 0%, var(--light) 100%);
}

.contact-info-wrap {
    background: var(--gradient-primary);
    padding: 40px 35px;
    border-radius: 20px;
    color: var(--white);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

.contact-info-wrap::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.contact-info-wrap h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.8rem;
    position: relative;
}

.contact-info-wrap p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    position: relative;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.contact-details h5 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    word-break: break-word;
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.contact-form-wrap {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-wrap h3 {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-form .form-control {
    border: 2px solid #f0e6d2;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--light);
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

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

.form-message {
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark);
    color: rgba(255, 248, 240, 0.7);
    padding: 70px 0 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-brand .brand-title {
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-brand .brand-sub {
    color: rgba(255, 248, 240, 0.6);
}

.footer-brand p {
    margin-top: 18px;
    font-size: 0.93rem;
    line-height: 1.7;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.93rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(255, 248, 240, 0.7);
    font-size: 0.93rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 248, 240, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 50px;
    padding: 22px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ===== FLOATING ICONS ===== */
.float-icon {
    position: fixed;
    bottom: 130px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-whatsapp {
    background: #25D366;
    left: 25px;
}

.float-call {
    background: var(--primary);
    right: 25px;
}

.float-icon:hover {
    transform: scale(1.1);
    color: var(--white);
}

.float-whatsapp:hover {
    background: #128C7E;
}

.float-call:hover {
    background: var(--primary-dark);
}

@keyframes pulse {
    0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-call {
    animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
    0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(184, 0, 31, 0.5); }
    70% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 15px rgba(184, 0, 31, 0); }
    100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(184, 0, 31, 0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    border: 2px solid var(--secondary);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}
.sr-ur-li li{
	border-bottom:1px dashed
}
.cu-lg-wdth{
	width:220px;
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    .hero-title { font-size: 3.4rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 991.98px) {
	.main-header{
		position:relative;
	}
    .section-padding { padding: 70px 0; }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        margin: 2px 0;
    }
    .btn-book { margin-top: 15px; }
    .hero-slide { height: 70vh; min-height: 500px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .about-img-main img { height: 400px; }
    .counter-number { font-size: 2.5rem; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
    body { font-size: 15px; }
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.85rem; }
    .section-tag { font-size: 1.4rem; }
    .section-subtitle { font-size: 0.95rem; }

    .hero-slide { height: 80vh; min-height: 480px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-tag { font-size: 1.2rem; padding: 6px 16px; }
    .hero-text { font-size: 0.95rem; }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 24px;
        font-size: 0.82rem;
    }

    .carousel-control-prev,
    .carousel-control-next { display: none; }

    .category-title { font-size: 1.25rem; padding: 8px 20px; }
    .service-img { height: 200px; }
    .service-body { padding: 20px; }

    .about-img-main img { height: 320px; }
    .about-img-badge {
        padding: 18px 20px;
        bottom: 5px;
        left: 5px;
    }
    .badge-number { font-size: 1.8rem; }
    .badge-text { font-size: 0.7rem; }

    .about-features {
        grid-template-columns: 1fr;
    }

    .counter-number { font-size: 2.2rem; }
    .counter-item h5 { font-size: 0.85rem; letter-spacing: 1px; }

    .testimonial-card { padding: 35px 25px; margin: 0; }
    .testimonial-text { font-size: 0.98rem; }

    .testimonial-control { display: none; }

    .contact-info-wrap,
    .contact-form-wrap { padding: 30px 22px; }
    .contact-info-wrap h3,
    .contact-form-wrap h3 { font-size: 1.4rem; }

    .float-icon {
        width: 52px;
        height: 52px;
        font-size: 1.45rem;
    }
    .float-whatsapp { left: 18px; }
    .float-call { right: 18px; }

    .back-to-top { right: 18px; bottom: 10px; }

    .accordion-button { font-size: 0.95rem; padding: 15px 18px; }

    .why-card,
    .step-card { padding: 30px 20px; }

    .footer-title { font-size: 1.05rem; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 1.85rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .section-title { font-size: 1.65rem; }
    .brand-title { font-size: 0.95rem; }
    .brand-sub { font-size: 0.6rem; }
    .brand-icon { width: 42px; height: 42px; font-size: 1.1rem; }
}

/* AOS animation override */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
