:root {
    --primary-color: #fdaa77;
    --secondary-color: #eae4dd;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: var(--secondary-color);
}

.navbar.scrolled {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.navbar-nav .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
}

.navbar-nav .btn-primary:hover {
    background-color: #fc9b5e;
    border-color: #fc9b5e;
}

/* Hero Section */
.hero-section {
    height: 500px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #eee8cd;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #eee8cd;
    animation: fadeInUp 1.2s ease;
}

.hero-content .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Service Card */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

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

.service-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card .price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card .duration {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    background-color: var(--secondary-color);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wizard-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 2px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.wizard-step.active .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.wizard-step.completed .step-number {
    background-color: #28a745;
    border-color: #28a745;
    color: var(--light-color);
}

.wizard-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Section */
.contact-info {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
}

.contact-info .info-item {
    margin-bottom: 20px;
}

.contact-info .info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

#contact-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--light-color);
    position: relative;
}

.footer h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    line-height: 1.8;
}

/* Footer Links */
.footer a {
    color: var(--light-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.25rem 0;
}

.footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
    transform: translateX(5px);
}

.footer .link-hover {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer .link-hover:hover {
    transform: scale(1.2);
}

/* Footer Social Links */
.social-links a {
    font-size: 1.2rem;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(253, 170, 119, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color) !important;
    transform: translateY(-5px);
}

/* Footer List */
.footer ul li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Footer Contact Info */
.footer .text-white-50 {
    color: #b8b8b8 !important;
}

.footer .text-white-50 a {
    color: #e8e8e8 !important;
}

.footer .text-white-50 a:hover {
    color: var(--primary-color) !important;
}

/* Footer Icons */
.footer i {
    transition: all 0.3s ease;
}

.footer li:hover i {
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

/* Footer Divider */
.footer hr {
    margin: 2rem 0;
    opacity: 0.3;
}

/* Footer Copyright */
.footer .text-center {
    color: #888888;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fc9b5e;
    border-color: #fc9b5e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 170, 119, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Unified button radius for frontend */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-outline-primary,
.btn-outline-secondary {
    border-radius: 30px;
    padding: 12px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.2rem;
    }

    .service-card img {
        height: 200px;
    }
    .hero-section {
        height: 350px;
    }
    .carousel-item {
        height: 350px;
    }
    .hero-content p {
        font-size: 0.8rem;
    }
    .hero-content .btn {
        padding: 10px 25px;
    }
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(253, 170, 119, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.flatpickr-months {
    background-color: var(--primary-color);
}

.flatpickr-current-month {
    color: white;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    fill: white;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    fill: var(--secondary-color);
}

.flatpickr-weekday {
    color: var(--text-color);
    font-weight: 600;
}

.flatpickr-day {
    border-radius: 4px;
    color: var(--text-color);
}

.flatpickr-day:hover {
    background-color: rgba(253, 170, 119, 0.2);
    border-color: var(--primary-color);
}

.flatpickr-day.today {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.flatpickr-day.today:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.flatpickr-day.disabled {
    color: #ccc;
}
