/* ============================================================
   HAIR 2 FACE - Premium Luxury Salon Stylesheet
   ============================================================ */

/* === CSS Custom Properties === */
:root {
    --primary: #B8860B;
    --primary-dark: #8B6508;
    --primary-light: #DAA520;
    --secondary: #1E1E1E;
    --secondary-light: #2D2D2D;
    --accent: #C2185B;
    --accent-light: #E91E63;
    --bg: #FAFAFA;
    --bg-dark: #0D0D0D;
    --text-dark: #1E1E1E;
    --text-light: #FAFAFA;
    --text-muted: #6C757D;
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #B8860B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 32px rgba(184, 134, 11, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }

/* === Text Utilities === */
.text-gold { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-light-50 { color: rgba(255,255,255,0.7); }
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.btn-gold {
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--gold-gradient-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}

.btn-gold:active::after {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.btn-outline-gold {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
}

/* === Section Styling === */
.section-padding { padding: 100px 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* === Navbar === */
#mainNav {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    padding: 12px 0;
}

#mainNav .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

#mainNav .brand-number {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 0.65;
    vertical-align: sub;
    display: inline-block;
    margin: 0 -3px;
    background: repeating-linear-gradient(
        -45deg,
        #C2185B 0px, #C2185B 3px,
        #fff 3px, #fff 5px,
        #C2185B 5px, #C2185B 8px
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 3px #8B6508;
    text-shadow: 0 0 10px rgba(194,24,91,0.4);
}

.brand-number {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 1.6em;
    line-height: 0.65;
    vertical-align: sub;
    display: inline-block;
    background: repeating-linear-gradient(
        -45deg,
        #C2185B 0px, #C2185B 3px,
        #fff 3px, #fff 5px,
        #C2185B 5px, #C2185B 8px
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px #8B6508;
}

#mainNav .brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

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

#mainNav .dropdown-menu {
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

#mainNav .dropdown-item {
    color: rgba(255,255,255,0.8);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

#mainNav .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}

/* === Hero / Slider === */
.hero-section {
    width: 100%;
}

.hero-slider.swiper-container,
.hero-slider {
    height: 90vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slider .swiper-slide-active .hero-slide-bg,
.hero-slider .swiper-slide-duplicate-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-content .btn-group-hero {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-content .btn-hero-primary {
    padding: 14px 36px;
    border-radius: 50px;
    background: var(--gold-gradient);
    color: #fff;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.hero-content .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: #fff;
}

.hero-content .btn-hero-secondary {
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.hero-content .btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 1.2rem;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D2D2D 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,11,0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194,24,91,0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.page-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb-item.active {
    color: var(--primary-light);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* === Glassmorphism Cards === */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 134, 11, 0.3);
}

.glass-card-dark {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

/* === Service Cards === */
.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.service-card .card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.3));
}

.service-card .card-body {
    padding: 1.5rem;
    position: relative;
}

.service-card .card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0.75rem 0 0.5rem;
}

.service-card .card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card .card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.service-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 1.5rem;
}

/* === Team Cards === */
.team-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.team-card .team-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-card .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--primary);
}

.team-card .team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-card .team-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.team-card .team-position {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.team-card .team-experience {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* === Testimonial Cards === */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(184, 134, 11, 0.1);
    position: absolute;
    top: 0;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .testimonial-name {
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-card .testimonial-service {
    font-size: 0.8rem;
    color: var(--primary);
}

/* === Pricing Cards === */
.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card .pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-gradient);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card .pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card .pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--primary);
}

.pricing-card .pricing-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.pricing-card .pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card .pricing-body {
    padding: 2rem;
}

.pricing-card .pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.pricing-card .pricing-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.pricing-card .pricing-footer {
    padding: 0 2rem 2rem;
}

/* === Gallery Items === */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item .gallery-overlay i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gallery-item .gallery-overlay span {
    color: #fff;
    font-weight: 500;
}

/* === Offer Cards === */
.offer-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.offer-card .offer-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.offer-card .offer-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(194,24,91,0.3);
}

.offer-card .offer-body {
    padding: 1.5rem;
}

.offer-card .offer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.offer-card .offer-code {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px dashed var(--primary);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
}

.offer-card .offer-countdown {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.offer-card .offer-countdown .countdown-item {
    text-align: center;
    background: var(--secondary);
    color: #fff;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    min-width: 50px;
}

.offer-card .offer-countdown .countdown-item .num {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.offer-card .offer-countdown .countdown-item .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* === Stat Counter === */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.15);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--primary);
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* === Welcome Section === */
.welcome-section {
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.welcome-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.welcome-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.welcome-image .experience-badge .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.welcome-image .experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.welcome-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.welcome-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* === Why Choose Us === */
.feature-icon-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.feature-icon-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-box .icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-icon-box:hover .icon-wrap {
    background: var(--gold-gradient);
    color: #fff;
}

.feature-icon-box h5 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.feature-icon-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* === Booking Form === */
.booking-form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
}

.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.15);
}

/* === Contact Info === */
.contact-info-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-item .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-info-item h6 {
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* === Bridal Banner === */
.bridal-banner {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bridal-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,134,11,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

/* === Footer === */
.footer {
    background: var(--secondary);
    color: #fff;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact li i {
    margin-top: 4px;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: #fff;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* === WhatsApp & Call Float === */
.whatsapp-float,
.call-float {
    position: fixed;
    z-index: 999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float {
    bottom: 100px;
    right: 20px;
    background: #25D366;
}

.call-float {
    bottom: 165px;
    right: 20px;
    background: var(--accent);
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* === Preloader === */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-icon {
    font-size: 3rem;
    color: var(--primary);
    animation: pulse-gold 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 1rem auto 0;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes loading {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* === Back to Top === */
#backToTop {
    z-index: 1045;
    transition: var(--transition);
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* === Google Map === */
.map-section {
    width: 100%;
}

.map-container {
    width: 100%;
    position: relative;
}

.map-container iframe {
    width: 100% !important;
    height: 400px;
    display: block;
}

/* === Parallax Section === */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* === Dark Mode === */
[data-bs-theme="dark"] body {
    --bg: #121212;
    --text-dark: #E0E0E0;
    --text-muted: #9E9E9E;
}

[data-bs-theme="dark"] .glass-card {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255,255,255,0.05);
}

[data-bs-theme="dark"] .service-card,
[data-bs-theme="dark"] .testimonial-card,
[data-bs-theme="dark"] .pricing-card,
[data-bs-theme="dark"] .offer-card,
[data-bs-theme="dark"] .feature-icon-box,
[data-bs-theme="dark"] .contact-info-item,
[data-bs-theme="dark"] .booking-form-wrapper {
    background: #1A1A1A;
    border-color: rgba(255,255,255,0.05);
}

[data-bs-theme="dark"] .team-card {
    background: #1A1A1A;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background: #2D2D2D;
    border-color: #3D3D3D;
    color: #E0E0E0;
}

/* === Responsive === */
@media (max-width: 1199.98px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-slider,
    .hero-slider .swiper-slide { height: 80vh; }
}

@media (max-width: 991.98px) {
    .hero-section .hero-slider,
    .hero-section .hero-slider .swiper-slide { height: 70vh; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-padding { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    .page-title { font-size: 2rem; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .welcome-image img { height: 350px; }
}

@media (max-width: 767.98px) {
    body { padding-top: 70px; }
    .hero-section .hero-slider,
    .hero-section .hero-slider .swiper-slide { height: 60vh; min-height: 400px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-content .btn-group-hero { flex-direction: column; }
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.75rem; }
    .page-header { padding: 120px 0 60px; }
    .page-title { font-size: 1.75rem; }
    .stat-item .stat-number { font-size: 2.25rem; }
    .booking-form-wrapper { padding: 1.5rem; }
    .welcome-image .experience-badge { position: relative; bottom: 0; right: 0; margin-top: -20px; }
    .welcome-features { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .hero-section .hero-slider,
    .hero-section .hero-slider .swiper-slide { height: 50vh; min-height: 350px; }
    .hero-content h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
}
