﻿/* ===================================
   ELEGANCE HAIR SALON - Main Styles
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #d4af37;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #d4af37, #f0d78c);
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Loading Screen ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--white);
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar .social-icons a {
    margin-left: 15px;
    font-size: 1rem;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar-brand .logo-img {
    height: 50px;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Book Now Button */
.btn-book-now {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    margin-left: 15px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.btn-book-now:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: scale(1.05);
}

.btn-book-now::after {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

/* Primary Button */
.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 45px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Secondary Button */
.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 15px 45px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    font-size: 1.1rem;
    margin-left: 15px;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== About Section ===== */
.about-section {
    background: var(--light-bg);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.1);
}

.about-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature-box {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.feature-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-box h5 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.feature-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== Services Section ===== */
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card .service-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-menu-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.service-menu-card {
    background: var(--white);
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-menu-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--secondary-color);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.service-menu-card ul {
    padding-left: 18px;
    margin: 0;
}

.service-menu-card li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
}

/* ===== Pricing Section ===== */
.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.pricing-card.featured {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card.featured h3 {
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card.featured .price span {
    color: #ccc;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: #444;
}

/* ===== Team Section ===== */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--light-bg);
    color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(rgba(44,44,44,0.95), rgba(44,44,44,0.95)), 
                url('../images/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: var(--white);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card .stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color: var(--white);
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--light-bg);
}

.contact-info {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item-content h5 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-item-content p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 2px solid #eee;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    background: transparent;
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer p, .footer a {
    color: #ccc;
    line-height: 2;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .fa-heart {
    color: var(--primary-color);
}

.opening-hours {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== Floating Book Button ===== */
.floating-book-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--gradient);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-book-btn:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Appointment Modal ===== */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.8);
}

.appointment-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.appointment-modal .modal-header {
    background: var(--gradient);
    border: none;
    padding: 30px;
    position: relative;
}

.appointment-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.appointment-modal .modal-header * {
    position: relative;
    z-index: 1;
}

.appointment-modal .modal-title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.appointment-modal .modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 5px;
}

.appointment-modal .btn-close {
   
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.appointment-modal .modal-body {
    padding: 40px;
    background: var(--white);
}

.appointment-modal .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.appointment-modal .form-control,
.appointment-modal .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.appointment-modal .form-control:focus,
.appointment-modal .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--white);
}

.appointment-modal .form-control::placeholder {
    color: #aaa;
}

.appointment-modal .input-group-text {
    background: var(--gradient);
    border: none;
    color: var(--white);
    border-radius: 10px 0 0 10px;
}

.appointment-modal .input-group .form-control {
    border-radius: 0 10px 10px 0;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-indicator .step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.step-indicator .step.active {
    background: var(--gradient);
    color: var(--white);
}

.step-indicator .step.completed {
    background: #28a745;
    color: var(--white);
}

.step-indicator .step::after {
    content: '';
    position: absolute;
    right: -25px;
    width: 20px;
    height: 3px;
    background: #e0e0e0;
}

.step-indicator .step:last-child::after {
    display: none;
}

.step-indicator .step.completed::after {
    background: #28a745;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Service Options */
.appointment-modal .service-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.appointment-modal .service-option:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.appointment-modal .service-option.selected {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.appointment-modal .service-option input {
    display: none;
}

.appointment-modal .service-option .service-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
}

.appointment-modal .service-option .service-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.appointment-modal .service-option .service-info span {
    font-size: 0.85rem;
    color: #888;
}

.appointment-modal .service-option .service-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--primary-color);
}

/* Time Slots */
.appointment-modal .time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.appointment-modal .time-slot {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.appointment-modal .time-slot:hover {
    border-color: var(--primary-color);
}

.appointment-modal .time-slot.selected {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary-color);
}

.appointment-modal .time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-step {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-step-prev {
    background: #e0e0e0;
    color: var(--secondary-color);
    border: none;
}

.btn-step-prev:hover {
    background: #ccc;
}

.btn-step-next {
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.btn-step-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Appointment Summary */
.appointment-summary {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.appointment-summary h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.appointment-summary .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.appointment-summary .summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.appointment-summary .summary-label {
    color: var(--text-light);
    font-weight: 500;
}

.appointment-summary .summary-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.appointment-summary .total-row {
    background: var(--gradient);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.appointment-summary .total-row .summary-label,
.appointment-summary .total-row .summary-value {
    color: var(--white);
    font-size: 1.1rem;
}

/* Submit Button */
.appointment-modal .btn-submit-appointment {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.appointment-modal .btn-submit-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.appointment-modal .btn-submit-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.appointment-modal .btn-submit-appointment:hover::before {
    left: 100%;
}

/* Terms Link */
.terms-link {
    color: var(--primary-color);
}

.terms-link:hover {
    text-decoration: underline;
}

/* Success Animation */
.success-animation {
    text-align: center;
    padding: 40px;
}

.success-animation .checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #28a745;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.success-animation .checkmark i {
    font-size: 50px;
    color: var(--white);
}

.success-animation h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.success-animation p {
    color: var(--text-light);
    margin-bottom: 5px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}






/* ===== Page Header Styles ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: var(--primary-color);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* ===== Quick About Section ===== */
.quick-about-section {
    padding: 80px 0;
    background: var(--light-bg);
}

/* ===== Stats Section


/* ========================================
   OFFERS SLIDER
   ======================================== */
.offers-slider-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.offers-swiper {
    width: 100%;
    height: 500px;
}

.offers-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.offers-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Overlays */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-overlay.overlay-dark {
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.slide-overlay.overlay-gold {
    background: linear-gradient(90deg, rgba(212,175,55,0.85) 0%, rgba(212,175,55,0.4) 60%, transparent 100%);
}

.slide-overlay.overlay-right {
    background: linear-gradient(270deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    justify-content: flex-end;
}

/* Slide Content */
.slide-content {
    padding: 40px 60px;
    color: var(--white);
    max-width: 600px;
}

.slide-content-right {
    text-align: right;
}

.slide-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slide-tag.tag-white {
    background: var(--white);
    color: var(--primary-color);
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.7;
}

.slide-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.slide-price span {
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(255,255,255,0.6);
    margin-left: 10px;
    font-weight: 400;
}

/* Slide Buttons */
.btn-slide {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-slide-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-slide-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-slide-white {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-slide-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-slide-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-slide-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Swiper Navigation */
.offers-slider-section .swiper-button-next,
.offers-slider-section .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.offers-slider-section .swiper-button-next:hover,
.offers-slider-section .swiper-button-prev:hover {
    background: var(--primary-color);
}

.offers-slider-section .swiper-button-next::after,
.offers-slider-section .swiper-button-prev::after {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

/* Swiper Pagination */
.offers-slider-section .swiper-pagination {
    bottom: 25px !important;
}

.offers-slider-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition);
}

.offers-slider-section .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 10px;
}

/* Slide Animations */
.offers-swiper .swiper-slide-active .slide-tag { animation: fadeInUp 0.6s ease forwards; }
.offers-swiper .swiper-slide-active h2 { animation: fadeInUp 0.8s ease forwards; }
.offers-swiper .swiper-slide-active p { animation: fadeInUp 1s ease forwards; }
.offers-swiper .swiper-slide-active .slide-price { animation: fadeInUp 1.1s ease forwards; }
.offers-swiper .swiper-slide-active .slide-buttons { animation: fadeInUp 1.2s ease forwards; }

/* ========================================
   SERVICES MINI SLIDER
   ======================================== */
.services-mini-slider {
    background: var(--secondary-color);
    padding: 25px 0;
    overflow: hidden;
}

.services-mini-swiper .swiper-slide {
    width: auto;
}

.mini-service-item {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.mini-service-item:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.mini-service-item i {
    font-size: 1.5rem;
    margin-right: 12px;
    color: var(--primary-color);
}

.mini-service-item:hover i {
    color: var(--white);
}

.mini-service-item h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.mini-service-item span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.success-modal-content {
    border-radius: 20px;
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.success-modal-content h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.success-modal-content p {
    color: var(--text-light);
}

.booking-reference {
    color: var(--secondary-color);
    font-weight: 700;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-page-section {
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 30px;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-card.hidden {
    display: none;
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay h5 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-card-overlay p {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.gallery-card-overlay .gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.gallery-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-img-container {
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-img-container img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 20px;
}

.lightbox-caption h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: #ccc;
    font-size: 0.9rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
}

.lightbox-nav:hover {
    background: var(--primary-color);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-item-overlay {
    opacity: 1;
}

.instagram-item-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ========================================
   WELCOME BANNER WITH TRANSPARENT BG
   ======================================== */
.welcome-banner {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.welcome-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.88);
    z-index: 1;
}

.welcome-banner .container {
    position: relative;
    z-index: 2;
}

/* Welcome Badge */
.welcome-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Welcome Content */
.welcome-banner-content {
    color: var(--white);
}

.welcome-banner-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.welcome-banner-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 580px;
}

/* Welcome Features */
.welcome-features {
    margin-bottom: 35px;
}

.welcome-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.welcome-feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.welcome-feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-right: 18px;
    flex-shrink: 0;
}

.welcome-feature-text h5 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.welcome-feature-text p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-size: 0.9rem;
}

/* Welcome Buttons */
.welcome-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-welcome-outline {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-welcome-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Welcome Stats Grid */
.welcome-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.welcome-stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.welcome-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.welcome-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 15px;
}

.welcome-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.welcome-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Decorative elements */
.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.welcome-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    z-index: 1;
}
/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.about-intro-images {
    position: relative;
    padding-right: 40px;
}

.about-img-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-hover);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--gradient);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.experience-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.experience-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* About Intro Content */
.about-intro-content {
    padding-left: 20px;
}

.about-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 500;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-signature {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #eee;
}

.signature-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-right: 15px;
}

.signature-info h5 {
    margin-bottom: 3px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.signature-info p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mission-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.mission-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.mission-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.why-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-card:hover .why-card-img img {
    transform: scale(1.1);
}

.why-card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.why-card-content {
    padding: 25px;
}

.why-card-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.why-card-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Story Timeline Section */
.story-timeline-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item.timeline-left {
    padding-right: 50px;
    text-align: right;
}

.timeline-item.timeline-right {
    padding-left: 50px;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 2;
}

.timeline-left .timeline-dot {
    right: -10px;
}

.timeline-right .timeline-dot {
    left: -10px;
}

.timeline-year {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.timeline-card-body {
    padding: 20px;
}

.timeline-card-body h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-card-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   SERVICES PAGE
   ======================================== */

/* Services Introduction */
.services-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.services-intro-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.services-intro-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-intro-img:hover img {
    transform: scale(1.03);
}

.services-intro-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.services-intro-badge i {
    font-size: 1.2rem;
}

.services-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-section.service-detail-alt {
    background: var(--light-bg);
}

.service-detail-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.service-detail-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-img:hover img {
    transform: scale(1.05);
}

.service-detail-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-content {
    padding: 0 20px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-detail-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Service Price List */
.service-price-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    border-top: 2px solid #eee;
}

.service-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-price-list li:last-child {
    border-bottom: none;
}

.service-price-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Services Overview */
.services-overview-section {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #eee;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 10px auto 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--gradient);
    color: var(--white);
}

.process-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   LOGO STYLES
   ======================================== */

/* Navbar Logo */
.brand-logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.navbar.scrolled .brand-logo {
    height: 40px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Logo with text hidden (if you want logo only) */
/* Uncomment below if you want to hide text and show only logo */
/*
.navbar-brand .brand-nu,
.navbar-brand .brand-you {
    display: none;
}
*/

/* Logo with text visible (default) */
.navbar-brand .brand-nu,
.navbar-brand .brand-you {
    display: inline;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Loading Screen Logo */
.loading-logo {
    height: 80px;
    width: auto;
    
    animation: logoFadeIn 1s ease;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}