/* ===== VARIABLES - Bisbec Properties Color Scheme ===== */
:root {
    --primary-color: #c19a6b;
    --primary-dark: #a07d52;
    --secondary-color: #2c3e50;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 80px;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary-color);
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ===== Navbar Styles (from index) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
}

.logo-scrolled {
    display: none;
}

.header.scrolled .logo-default {
    display: none;
}

.header.scrolled .logo-scrolled {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.header.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-sm);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: var(--text-dark) !important;
}

.dropdown-menu a::after {
    display: none;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.header.scrolled .cta-button {
    background: var(--primary-color);
    color: white;
}

.header.scrolled .cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Page Header ===== */
.page-header {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    background-image: url('../Imgs/service/site.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255,255,255,0.8);
}

/* ===== Services Grid Section ===== */
.services-grid-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-btn:hover {
    background: var(--primary-color);
    color: white;
    gap: 12px;
}

/* ===== Why Choose Services Section ===== */
.why-choose-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Process Section ===== */
.process-section {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-step {
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(193, 154, 107, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

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

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

/* ===== Footer (from index) ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: none;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

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

/* ===== WhatsApp Floating Icon ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.whatsapp-icon-wrapper i {
    color: white;
    font-size: 35px;
    transition: all 0.3s ease;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.whatsapp-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-glow 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes whatsapp-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #128C7E;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #25D366;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    transition: var(--transition);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.close-modal:hover {
    background: var(--primary-color);
    color: white;
}

.modal-footer {
    text-align: center;
    padding: 20px 30px 30px;
    border-top: 1px solid #eee;
}

/* Service Modal */
.service-modal-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-image .image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.service-modal-info {
    padding: 25px 30px;
}

.service-modal-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-modal-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-modal-info h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.service-modal-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.service-modal-info ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.service-modal-info ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.modal-footer .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-footer .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.3);
}

.modal-footer .btn-primary i {
    font-size: 18px;
}

/* Booking Form */
.booking-form {
    padding: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    position: relative;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== Animation Classes ===== */
.animate-left, .animate-right, .animate-top, .animate-bottom, .animate-fade-up {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-top {
    transform: translateY(-50px);
}

.animate-bottom {
    transform: translateY(50px);
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-left.animate-in,
.animate-right.animate-in,
.animate-top.animate-in,
.animate-bottom.animate-in,
.animate-fade-up.animate-in {
    opacity: 1;
    transform: translate(0);
}

[data-delay="0.1s"].animate-in { transition-delay: 0.1s; }
[data-delay="0.2s"].animate-in { transition-delay: 0.2s; }
[data-delay="0.3s"].animate-in { transition-delay: 0.3s; }

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .benefits-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-menu a {
        font-size: 18px;
        color: var(--text-dark);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon-wrapper i {
        font-size: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 300px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===== BOOKING INSPECTION MODAL STYLES ===== */
#bookingModal.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    overflow-y: auto;
}

#bookingModal.modal.active {
    display: block;
}

#bookingModal .modal-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
}

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

/* Modal Header */
#bookingModal .modal-content h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    margin: 0;
    padding: 30px 30px 20px;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

#bookingModal .modal-content h2 .text-primary {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

#bookingModal .modal-content h2 .text-primary::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Close Button */
#bookingModal .close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#bookingModal .close-modal:hover {
    background: white;
    color: var(--primary-color);
    transform: rotate(90deg);
    border-color: white;
}

/* Modal Body */
#bookingModal .modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

/* Custom Scrollbar */
#bookingModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#bookingModal .modal-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

#bookingModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

#bookingModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Booking Form */
#bookingModal .booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Groups */
#bookingModal .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#bookingModal .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#bookingModal .form-group label::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 0;
}

#bookingModal .form-group label[for="bookingName"]::before { content: ''; font-size: 1rem; }
#bookingModal .form-group label[for="bookingPhone"]::before { content: ''; font-size: 1rem; }
#bookingModal .form-group label[for="bookingEmail"]::before { content: ''; font-size: 1rem; }
#bookingModal .form-group label[for="bookingLocation"]::before { content: ''; font-size: 1rem; }
#bookingModal .form-group label[for="bookingService"]::before { content: ''; font-size: 1rem; }
#bookingModal .form-group label[for="bookingDate"]::before { content: ''; font-size: 1rem; }
#bookingModal .form-group label[for="bookingMessage"]::before { content: ''; font-size: 1rem; }

/* Form Inputs */
#bookingModal .form-group input,
#bookingModal .form-group select,
#bookingModal .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: var(--text-dark);
}

#bookingModal .form-group input:hover,
#bookingModal .form-group select:hover,
#bookingModal .form-group textarea:hover {
    border-color: var(--primary-color);
    background: white;
}

#bookingModal .form-group input:focus,
#bookingModal .form-group select:focus,
#bookingModal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.15);
}

#bookingModal .form-group input.error,
#bookingModal .form-group select.error,
#bookingModal .form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

#bookingModal .form-group input.error:focus,
#bookingModal .form-group select.error:focus,
#bookingModal .form-group textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* Select Arrow Styling */
#bookingModal .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c19a6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

/* Textarea */
#bookingModal .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
#bookingModal .submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px -5px rgba(193, 154, 107, 0.4);
}

#bookingModal .submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

#bookingModal .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(193, 154, 107, 0.6);
}

#bookingModal .submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

#bookingModal .submit-btn:active {
    transform: translateY(-1px);
}

#bookingModal .submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

#bookingModal .submit-btn:hover i {
    transform: translateX(5px) rotate(5deg);
}

/* Button Loader */
#bookingModal .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#bookingModal .btn-loader i {
    animation: spin 1s linear infinite;
    font-size: 18px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Placeholder Styling */
#bookingModal ::placeholder {
    color: #9ca3af;
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #bookingModal .modal-content {
        margin: 20px auto;
        width: 95%;
    }
    
    #bookingModal .modal-content h2 {
        font-size: 1.5rem;
        padding: 25px 25px 15px;
    }
    
    #bookingModal .modal-body {
        padding: 25px;
    }
    
    #bookingModal .form-group input,
    #bookingModal .form-group select,
    #bookingModal .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    #bookingModal .submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    #bookingModal .close-modal {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    #bookingModal .modal-content h2 {
        font-size: 1.3rem;
        padding: 20px 20px 15px;
    }
    
    #bookingModal .modal-body {
        padding: 20px;
    }
    
    #bookingModal .form-group label {
        font-size: 0.9rem;
    }
    
    #bookingModal .form-group input,
    #bookingModal .form-group select,
    #bookingModal .form-group textarea {
        padding: 10px 12px;
    }
    
    #bookingModal .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Success Animation for Form Submission */
@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(193, 154, 107, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(193, 154, 107, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(193, 154, 107, 0);
    }
}

#bookingModal .submit-btn.success {
    animation: successPulse 0.5s ease;
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Optional: Add a nice pattern to modal background */
#bookingModal .modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.05) 25%, transparent 25%),
                linear-gradient(225deg, rgba(193, 154, 107, 0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.3;
}