@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f0f8f0;
    color: #2d4a2d;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    min-height: 100vh;
    background-color: #f0f8f0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Service Dropdown Styles */
.service-dropdown-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.service-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.service-dropdown-btn {
    width: 100%;
    background: linear-gradient(135deg, #063366, #184a1c);
    color: #fff;
    border: 2px solid #ffd600;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(6, 51, 102, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-dropdown-btn:hover::before {
    left: 100%;
}

.service-dropdown-btn:hover {
    background: linear-gradient(135deg, #184a1c, #063366);
    border-color: #ffea70;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 51, 102, 0.3);
}

.dropdown-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.dropdown-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.service-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #ffd600;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(6, 51, 102, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
}

.service-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    text-decoration: none;
    color: #2d4a2d;
    border-bottom: 1px solid #f0f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #ffd600, #ffea70);
    color: #063366;
    transform: translateX(5px);
}

.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e3eafc);
    border-radius: 10px;
    margin-right: 16px;
    flex-shrink: 0;
    border: 2px solid #ffd600;
}

.dropdown-item:hover .dropdown-item-icon {
    background: linear-gradient(135deg, #063366, #184a1c);
    border-color: #fff;
}

.dropdown-item:hover .dropdown-item-icon svg {
    stroke: #ffd600;
}

.dropdown-item-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: inherit;
}

.dropdown-item-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    color: inherit;
}

/* Service Category Highlight Animation */
.service-category.highlighted {
    animation: highlightPulse 3s ease-in-out;
    border: 3px solid #ffd600;
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.5);
}

@keyframes highlightPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 214, 0, 0.5);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(255, 214, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 214, 0, 0.5);
    }
}

.services-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d4a2d;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.services-header p {
    font-size: 1.25rem;
    color: #4a6b4a;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Categories */
.service-category {
    margin-bottom: 80px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(45, 74, 45, 0.1);
    border: 1px solid #e3eafc;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e3eafc);
    border-radius: 16px;
    border: 2px solid #ffd600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 74, 45, 0.1);
}

.service-category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #3a5d1c, #ffd600);
}

.service-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2d4a2d;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.service-category-header .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd600, #ffea70);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
}

.service-category-header .icon svg {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

/* Removed hover effects for service category headers */

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(45, 74, 45, 0.1);
    border: 2px solid #f0f4f8;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #3a5d1c);
}

/* Removed hover effect for service cards */

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d4a2d;
    margin-bottom: 12px;
    text-align: center;
}

.service-description {
    color: #4a6b4a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    margin-bottom: 0;
}

.service-features span {
    display: block;
    color: #3a5d1c;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
}

/* Book Now Section Styles */
.book-now-section {
    background: linear-gradient(135deg, #063366, #184a1c);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px auto 40px auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(45, 74, 45, 0.15);
    position: relative;
    overflow: hidden;
}

.book-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,214,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,214,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,214,0,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,214,0,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,214,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.book-now-content {
    position: relative;
    z-index: 2;
}

.book-now-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd600;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.book-now-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.book-now-btn {
    background: linear-gradient(135deg, #ffd600, #ffea70);
    color: #063366;
    border: none;
    border-radius: 12px;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 214, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Removed hover effects for book now button */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: #fff;
    margin: 20px auto;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.close {
    position: sticky;
    top: 0;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    margin-left: auto;
    margin-bottom: 10px;
}

/* Removed hover effect for close button */

.modal-content h2 {
    color: #063366;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px 0;
    z-index: 5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #063366;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e3eafc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd600;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #666;
}

/* Services Checkboxes Styles */
.services-checkboxes {
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid #e3eafc;
    border-radius: 8px;
    padding: 16px;
    background-color: #f8f9fa;
}

.no-category-selected {
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.service-checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e3eafc;
    cursor: pointer;
}

/* Removed hover effect for service checkbox items */

.service-checkbox-item:last-child {
    margin-bottom: 0;
}

.service-checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    transform: scale(1.2);
    accent-color: #ffd600;
}

.service-checkbox-item label {
    margin: 0;
    font-weight: 500;
    color: #063366;
    cursor: pointer;
    flex: 1;
    font-size: 0.95rem;
}

.service-checkbox-item.selected {
    background: linear-gradient(135deg, #ffd600, #ffea70);
    border-color: #ffd600;
    box-shadow: 0 2px 8px rgba(255, 214, 0, 0.3);
}

.service-checkbox-item.selected label {
    color: #063366;
    font-weight: 600;
}

/* Select All Button */
.select-all-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e3eafc;
}

.select-all-btn {
    background: linear-gradient(135deg, #063366, #184a1c);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Removed hover effect for select all button */

.select-all-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.selected-count {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.submit-booking-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3a5d1c, #4caf50);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    position: sticky;
    bottom: 0;
    z-index: 5;
}

/* Removed hover effect for submit booking button */

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 16px;
    }
    
    .services-header h1 {
        font-size: 2.5rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
    
    /* Service Dropdown Mobile Styles */
    .service-dropdown-container {
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .service-dropdown {
        max-width: 100%;
    }
    
    .service-dropdown-btn {
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .dropdown-text {
        font-size: 1rem;
    }
    
    .dropdown-item {
        padding: 16px 20px;
        min-height: 60px;
    }
    
    .dropdown-item-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .dropdown-item-content h4 {
        font-size: 1.1rem;
    }
    
    .dropdown-item-content p {
        font-size: 0.85rem;
    }
    
    .service-category {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .service-category-header {
        padding: 24px;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .service-category-header h3 {
        font-size: 1.8rem;
    }
    
    .service-category-header .icon {
        width: 60px;
        height: 60px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
        max-width: 100%;
        min-height: 200px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 214, 0, 0.3);
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .book-now-section {
        padding: 40px 24px;
        margin: 60px auto 30px auto;
    }
    
    .book-now-content h3 {
        font-size: 2rem;
    }
    
    .book-now-content p {
        font-size: 1.1rem;
    }
    
    .book-now-btn {
        padding: 16px 36px;
        font-size: 1.1rem;
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(255, 214, 0, 0.3);
    }
    
    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        margin: 10px auto;
        padding: 24px;
        width: 95%;
        max-height: calc(100vh - 20px);
    }
    
    .services-checkboxes {
        max-height: 150px;
    }
    
    .service-checkbox-item {
        padding: 10px;
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(255, 214, 0, 0.3);
    }
    
    .service-checkbox-item:active {
        transform: scale(0.98);
    }
    
    .service-checkbox-item label {
        font-size: 0.9rem;
        min-height: 24px;
        display: flex;
        align-items: center;
    }
    
    .service-checkbox-item input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 12px;
    }
    
    .services-header h1 {
        font-size: 2rem;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    /* Service Dropdown Small Mobile Styles */
    .service-dropdown-container {
        margin-top: 25px;
        padding: 0 5px;
    }
    
    .service-dropdown-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .dropdown-text {
        font-size: 0.95rem;
    }
    
    .dropdown-item {
        padding: 14px 16px;
        min-height: 55px;
    }
    
    .dropdown-item-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .dropdown-item-content h4 {
        font-size: 1rem;
    }
    
    .dropdown-item-content p {
        font-size: 0.8rem;
    }
    
    .service-category {
        padding: 24px 16px;
        margin-bottom: 50px;
    }
    
    .service-category-header {
        padding: 20px;
        gap: 12px;
        margin-bottom: 35px;
    }
    
    .service-category-header h3 {
        font-size: 1.6rem;
    }
    
    .service-category-header .icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card {
        padding: 20px 16px;
        max-width: 100%;
        min-height: 180px;
    }
    
    .book-now-section {
        padding: 32px 20px;
        margin: 50px auto 25px auto;
    }
    
    .book-now-content h3 {
        font-size: 1.8rem;
    }
    
    .book-now-content p {
        font-size: 1rem;
    }
    
    .book-now-btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .modal {
        padding: 5px 0;
    }
    
    .modal-content {
        margin: 5px auto;
        padding: 20px;
        width: 98%;
        max-height: calc(100vh - 10px);
    }
    
    .services-checkboxes {
        max-height: 120px;
        padding: 12px;
    }
    
    .service-checkbox-item {
        padding: 8px;
        margin-bottom: 6px;
        min-height: 40px;
    }
    
    .service-checkbox-item label {
        font-size: 0.85rem;
        min-height: 20px;
    }
    
    .service-checkbox-item input[type="checkbox"] {
        min-width: 18px;
        min-height: 18px;
    }
    
    .select-all-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-height: 36px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .submit-booking-btn {
        min-height: 48px;
        font-size: 1rem;
    }
}

/* Hero section styles for compatibility */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    text-align: center;
    color: #fff;
    background: none;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(24,74,28,0.7), 0 2px 8px #0002;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.35rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 1px 1px 6px rgba(24,74,28,0.5), 0 1px 6px #0002;
    letter-spacing: 0.5px;
}

/* Footer styles for compatibility */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #063366, #184a1c);
    color: #fff;
}

.footer-about h3 {
    color: #ffd600;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-links h4,
.footer-social h4 {
    color: #ffd600;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
}

.footer-links a,
.footer-social a {
    color: #fff;
    text-decoration: none;
}

/* Removed hover effects for footer links */

/* Disable hover effects for disabled dropdown options */
.dropdown-disabled:hover {
    background-color: transparent !important;
    color: inherit !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.5 !important;
}

.dropdown-disabled:hover::before {
    display: none !important;
}

.dropdown-disabled:hover::after {
    display: none !important;
}

/* Additional fallback for attribute selector */
.dropdown-menu a[style*="pointer-events: none"]:hover {
    background-color: transparent !important;
    color: inherit !important;
    transform: none !important;
    box-shadow: none !important;
}

.dropdown-menu a[style*="pointer-events: none"]:hover::before {
    display: none !important;
}

.dropdown-menu a[style*="pointer-events: none"]:hover::after {
    display: none !important;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #063366;
    color: #fff;
}

.footer-bottom hr {
    border: none;
    height: 1px;
    background: #ffd600;
    margin-bottom: 16px;
}

.footer-tagline {
    color: #ffd600;
    font-style: italic;
    margin-top: 8px;
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-icon {
    color: #28a745;
    margin-bottom: 20px;
}

.success-modal-content h2 {
    color: #2d4a2d;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.success-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.detail-item {
    margin-bottom: 10px;
    color: #4a6b4a;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.success-message {
    color: #4a6b4a;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-ok-btn {
    background: linear-gradient(135deg, #ffd600, #f0b400);
    color: #2d4a2d;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

/* Removed hover effect for success ok button */

/* Mobile responsive for success modal */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .success-details {
        padding: 15px;
    }
}

/* Responsive font sizes for headings and text */
h1, .services-header h1 {
  font-size: clamp(1.7rem, 5vw, 3.5rem);
}
h2, .service-category-header h3 {
  font-size: clamp(1.3rem, 4vw, 2.4rem);
}
p, li, a, .service-description, .service-features span {
  font-size: clamp(0.98rem, 2.5vw, 1.15rem);
}

/* Responsive buttons */
.btn, .book-now-btn, .submit-booking-btn {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  min-height: 44px;
  padding: 14px 24px;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .btn, .book-now-btn, .submit-booking-btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* Hero and service-category-header backgrounds */
.hero, .service-category-header {
  background-size: cover !important;
  background-position: center !important;
  min-height: 220px;
}
@media (max-width: 700px) {
  .hero, .service-category-header {
    min-height: 120px;
    padding: 0 4vw;
  }
  .services-header h1 {
    font-size: clamp(1.2rem, 7vw, 2.2rem);
  }
  .services-header p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
}

/* Section padding/margin for mobile */
@media (max-width: 700px) {
  .services-section, .services-header, .service-category, .book-now-section {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* Prevent text overflow */
.services-header, .service-category-header, .service-card, .book-now-section {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Ensure all section headings are centered on mobile */
@media (max-width: 700px) {
  h1, h2, h3, h4, h5, h6, .services-header h1, .service-category-header h3 {
    text-align: center;
  }
}

/* Ensure nav links and buttons are touch-friendly */
@media (max-width: 700px) {
  .nav-links a, .btn, .book-now-btn, .submit-booking-btn {
    min-height: 48px;
    font-size: clamp(1rem, 3vw, 1.15rem);
    padding: 14px 18px;
  }
}