:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #8b7355;
    --dark-color: #2c2c2c;
    --light-color: #f8f6f3;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.5rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s, width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.btn-book {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    margin-left: 1rem;
}

.nav-link.btn-book::after {
    display: none;
}

.nav-link.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 115, 85, 0.1) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--dark-color);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--primary-color);
    font-size: 2rem;
    text-decoration: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 1.1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: white;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Preview Cards */
.service-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.img-1 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.img-2 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.img-3 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
}

.service-detail-image {
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.img-bridal {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.img-nails {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.img-beauty {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-mini-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.service-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-mini-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-mini-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.service-mini-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light-color);
}

.pricing-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-header h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
}

.price-header h4 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features i {
    color: var(--primary-color);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 115, 85, 0.05) 100%);
}

.booking-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Select2 Custom Styling */
.select2-container--bootstrap-5 .select2-selection {
    border: 2px solid var(--gray);
    border-radius: 10px;
    min-height: 48px;
    padding: 0.25rem;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-dark);
    color: white;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem;
    font-weight: 500;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-right: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 0.5rem;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

.select2-container--bootstrap-5 .select2-dropdown {
    border: 2px solid var(--gray);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: var(--primary-color);
    color: white;
}

.select2-container--open .select2-dropdown {
    z-index: 9999 !important;
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
    border: 2px solid var(--gray);
    border-radius: 8px;
    padding: 0.5rem;
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

#selectedServices {
    min-height: 50px;
}

#selectedServices .alert-info {
    background-color: #e7f3ff;
    border-color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

#selectedServices .alert-info ul {
    list-style: none;
    padding-left: 0;
}

#selectedServices .alert-info li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

.booking-info {
    position: sticky;
    top: 100px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.info-list strong {
    color: var(--dark-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-link i {
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-image {
    height: 500px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.team-image {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-content {
    padding: 3rem;
    text-align: center;
}

.team-content h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-social {
    margin-top: 2rem;
}

.team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-box .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.cta-box .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    /* Tablet Styles */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .nav-link.btn-book {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .booking-info {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Styles */
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand i {
        font-size: 1.2rem;
    }
    
    .nav-link {
        margin: 0.25rem 0;
        padding: 0.5rem 0 !important;
    }
    
    .nav-link.btn-book {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image {
        height: auto;
        margin-top: 2rem;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 1rem;
        transform: none !important;
        width: 100%;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 0;
    }
    
    /* Cards */
    .feature-card,
    .service-preview-card,
    .price-card {
        margin-bottom: 1.5rem;
    }
    
    .price-card.featured {
        transform: scale(1);
        margin-top: 0;
    }
    
    /* Forms */
    .booking-form-wrapper {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.65rem 0.85rem;
    }
    
    /* Select2 Mobile Optimization */
    .select2-container--bootstrap-5 {
        width: 100% !important;
    }
    
    .select2-container--bootstrap-5 .select2-selection {
        min-height: 44px;
        font-size: 1rem;
        padding: 0.25rem;
    }
    
    .select2-container--bootstrap-5 .select2-selection--multiple {
        min-height: 44px;
    }
    
    .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
        padding: 0.25rem;
    }
    
    .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
        font-size: 0.85rem;
        padding: 0.2rem 0.4rem;
        margin: 0.15rem;
        line-height: 1.4;
    }
    
    .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__remove {
        margin-right: 0.4rem;
        padding-right: 0.4rem;
        font-size: 0.9rem;
    }
    
    .select2-dropdown {
        font-size: 1rem;
        z-index: 9999;
    }
    
    .select2-results__option {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .select2-search--dropdown .select2-search__field {
        padding: 0.5rem;
        font-size: 1rem;
    }
    
    /* Select2 dropdown positioning on mobile */
    .select2-container--open .select2-dropdown {
        position: fixed !important;
        width: calc(100% - 2rem) !important;
        left: 1rem !important;
        right: 1rem !important;
        max-width: none !important;
    }
    
    /* Booking Info Sidebar */
    .booking-info {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .info-card h4 {
        font-size: 1.2rem;
    }
    
    .info-card i {
        font-size: 1.5rem;
    }
    
    /* CTA Section */
    .cta-box {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-box .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .cta-box .text-lg-end {
        text-align: center !important;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .social-icons {
        margin-top: 1rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    /* Stats Section */
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 2rem 0;
    }
    
    .service-detail-section .row {
        flex-direction: column;
    }
    
    .service-detail-image {
        margin-bottom: 2rem;
        min-height: 250px;
        height: 300px;
    }
    
    .about-image,
    .team-image {
        min-height: 300px;
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .service-image {
        min-height: 200px;
        height: 200px;
    }
    
    .service-title {
        font-size: 1.75rem;
        margin-top: 1rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Team Card */
    .team-card {
        padding: 1.5rem;
    }
    
    .team-content h3 {
        font-size: 1.5rem;
    }
    
    /* Price Cards */
    .pricing-category {
        margin-bottom: 3rem;
    }
    
    .category-header {
        margin-bottom: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .price-header h4 {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    /* Selected Services Display */
    #selectedServices .alert-info {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    #selectedServices .alert-info ul {
        margin-top: 0.5rem;
    }
    
    #selectedServices .alert-info li {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .booking-form-wrapper {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .price-card {
        padding: 1.5rem 1rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    /* Button adjustments */
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Hero buttons stack */
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        width: 100%;
        margin: 0 !important;
    }
    
    /* Form improvements */
    .form-control,
    .form-select,
    .select2-container--bootstrap-5 .select2-selection {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better touch targets */
    .btn,
    .nav-link,
    .form-check-input {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-check-label {
        padding-left: 0.5rem;
    }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Table responsive */
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Scroll indicator mobile */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator a {
        font-size: 1.5rem;
    }
    
    /* Section header mobile */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    /* Value cards mobile */
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .value-card i {
        font-size: 2rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
    
    /* Service mini cards mobile */
    .service-mini-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-mini-card i {
        font-size: 2rem;
    }
    
    .service-mini-card h5 {
        font-size: 1.1rem;
    }
    
    /* Category header mobile */
    .category-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .category-header i {
        font-size: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    /* Footer text */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer p,
    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }
}

/* Background Colors */
.bg-light {
    background-color: var(--light-color) !important;
}

