/* Exact Copy of Massage Refresh Dallas Website Styling */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: white;
    font-weight: 300;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navigation */
}

/* Professional Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    flex-shrink: 0;
    max-width: 200px; /* Ensure logo doesn't take full width */
}

.nav-logo a {
    display: block;
    max-width: 100%;
}

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.nav-menu .dropdown > a i {
    transition: transform 0.3s ease;
}

.nav-menu .dropdown.active > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-left-color: #D4AF37;
    transform: translateX(5px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-now-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 991px) {
    .nav-container {
        height: 70px;
        padding: 0;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
        max-width: 150px; /* Mobile logo size constraint */
    }
    
    .nav-logo img {
        height: 40px; /* Smaller logo on mobile */
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 1002;
        padding: 0 15px;
    }
    
    .book-now-btn {
        order: 1;
        margin-right: auto;
    }
    
    .nav-toggle {
        order: 2;
        margin-left: auto;
        display: flex;
        float: right;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 1001;
        width: 100%;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-menu a {
        padding: 15px 25px;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.98);
        border: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding: 12px 35px;
        border-left: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .dropdown-menu a:hover {
        transform: none;
        background: rgba(212, 175, 55, 0.1);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .book-now-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Footer Styles */
.footer {
    background: white;
    padding: 60px 0 0;
    color: #2c2c2c;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item i {
    color: #D4AF37;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    color: #2c2c2c;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours div {
    color: #2c2c2c;
    font-size: 14px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.privacy-link {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        gap: 10px;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-toggle {
        margin-right: 0;
        padding-right: 0;
    }
    
    .book-now-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        /* Use white, matching desktop dropdown and brand look */
        background: rgba(255, 255, 255, 0.98);
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content h3 {
        font-size: 24px;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-content {
        gap: 8px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-toggle {
        margin-right: 0;
        padding-right: 0;
    }
    
    .book-now-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .logo {
        max-height: 60px;
    }
    
    .hero-content .hero-main-headline {
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    /* Small mobile megamenu adjustments */
    .services-megamenu {
        padding: 10px;
        max-height: 70vh;
    }
    
    .services-grid {
        gap: 8px;
    }
    
    .service-category {
        padding: 10px;
    }
    
    .service-category h4 {
        font-size: 14px;
    }
    
    .service-list a {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .megamenu-footer .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content .hero-main-headline {
        font-size: 42px;
        margin-bottom: 25px;
        letter-spacing: -1px;
    }
    
    .hero-content h3 {
        font-size: 20px;
    }
    
    .services h2,
    .about h2,
    .blog h2,
    .promotions h2,
    .testimonials h2,
    .contact h2,
    .map h2 {
        font-size: 28px;
    }
}

/* Service Page Styles */
.page-header {
    background: white;
    padding: 30px 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #D4AF37;
    font-weight: 600;
}

.breadcrumb-item a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #B8860B;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}

/* Service Hero Section */
.service-hero {
    background: white;
    padding: 80px 0;
    position: relative;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.25rem;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-item i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #2c2c2c;
    font-weight: 500;
}

.service-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-hero-image img:hover {
    transform: translateY(-5px);
}

/* Service Details Section */
.service-details {
    background: white;
    padding: 80px 0;
}

.service-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 25px;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 15px;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 35px 0 20px 0;
}

.service-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-content li {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Session Options */
.session-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.session-option {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.session-option:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.session-option h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.session-option .price {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
}

.session-option p {
    color: #6c757d;
    margin: 0;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card, .info-card, .tips-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.booking-card h3, .info-card h4, .tips-card h4 {
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.booking-card p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.info-card ul, .tips-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li, .tips-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #6c757d;
}

.info-card li:last-child, .tips-card li:last-child {
    border-bottom: none;
}

/* Related Services */
.related-services {
    background: white;
    padding: 80px 0;
}

.related-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
}

.related-service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.related-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.related-service-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive Design for Service Pages */
@media (max-width: 991px) {
    .service-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .service-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        padding: 12px 18px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .session-options {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .related-services {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .service-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Page Styles */
.all-services {
    background: white;
    padding: 80px 0;
}

.all-services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.all-services .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

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

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

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

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card .description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 25px;
}

.service-card .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-card .service-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-card-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.service-card-actions .btn-outline {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
}

.service-card-actions .btn-outline:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
}

.service-card-actions .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    color: white;
}

.service-card-actions .btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Pricing Page */
@media (max-width: 991px) {
    .all-services h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .all-services {
        padding: 60px 0;
    }
    
    .all-services h2 {
        font-size: 2rem;
    }
    
    .all-services .intro-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-content {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
    
    .service-card-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .all-services h2 {
        font-size: 1.8rem;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 20px;
    }
}

/* Staff Page Styles */
.team-section {
    background: white;
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.team-section .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-content {
    padding: 30px;
}

.team-member h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.team-member .position {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .bio {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.team-member .specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.team-member .specialty-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-member .contact-info {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 20px;
}

.team-member .contact-info a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-member .contact-info a:hover {
    color: #B8860B;
}

/* Gift Cards Page Styles */
.gift-cards-section {
    background: white;
    padding: 80px 0;
}

.gift-cards-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.gift-cards-section .intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.gift-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.gift-card-option {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.gift-card-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

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

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

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

.gift-card-content {
    padding: 30px;
}

.gift-card-option h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.gift-card-option .price {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
}

.gift-card-option .description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.gift-card-option .features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.gift-card-option .features li {
    padding: 8px 0;
    color: #6c757d;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.gift-card-option .features li:last-child {
    border-bottom: none;
}

.gift-card-option .features li::before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    margin-right: 10px;
}

.gift-card-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gift-card-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.gift-card-actions .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    color: white;
}

.gift-card-actions .btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Staff and Gift Cards Pages */
@media (max-width: 991px) {
    .team-section h2, .gift-cards-section h2 {
        font-size: 2.5rem;
    }
    
    .team-grid, .gift-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-section, .gift-cards-section {
        padding: 60px 0;
    }
    
    .team-section h2, .gift-cards-section h2 {
        font-size: 2rem;
    }
    
    .team-section .intro-text, .gift-cards-section .intro-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .team-grid, .gift-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member-content, .gift-card-content {
        padding: 25px;
    }
    
    .team-member h3, .gift-card-option h3 {
        font-size: 1.5rem;
    }
    
    .gift-card-actions {
        flex-direction: column;
    }
    
    .gift-card-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .team-section h2, .gift-cards-section h2 {
        font-size: 1.8rem;
    }
    
    .team-member-image, .gift-card-image {
        height: 250px;
    }
    
    .team-member-content, .gift-card-content {
        padding: 20px;
    }
}

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

/* Full Width Sections */
section, .hero, .services, .about, .gallery, .faq, .testimonials, .contact, .map {
    width: 100%;
    max-width: 100%;
}





/* Service Search Bar */
.service-search-container {
    text-align: center;
    margin: 40px 0 50px 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 25px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.search-bar:focus-within {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #2c2c2c;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    padding: 18px 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    transform: scale(1.05);
}

.search-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.search-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #2c2c2c;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    user-select: none;
}

.search-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.search-tag.active {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    border-color: #D4AF37;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    padding: 8px 0;
    color: #2c2c2c;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.15);
}

.social-icons {
    text-align: left;
}

.social-icon {
    color: #333;
    margin-right: 15px;
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    color: #000;
}

/* Promo Banner */
.promo-banner {
    background-color: #D4AF37; /* Gold */
    color: #333;
    padding: 8px 0;
    text-align: center;
}

.promo-banner h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.call-btn {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.call-btn:hover {
    text-decoration: underline;
}



.logo {
    max-height: 70px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}



.book-now-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    border: none;
    letter-spacing: 0.5px;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-nav .container {
    position: relative;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    flex: 0 0 auto;
    z-index: 1002;
}

.nav-logo .logo {
    max-height: 40px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    outline: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    transform: translateY(-2px);
}







/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        position: relative;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex: 0 0 auto;
        z-index: 1002;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
        z-index: 1002;
    }
    
    .nav-toggle {
        margin-right: 0;
        padding-right: 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 1004;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        text-align: left;
    }
    
    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #2c2c2c;
        transform: none;
    }
    

    

    

    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-category {
        background: white;
        border-radius: 16px;
        padding: 20px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
    }
    
    .services-megamenu-header h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .services-megamenu-header p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .service-category h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .service-list li {
        margin-bottom: 6px;
    }
    
    .service-list a {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .service-list a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: #2c2c2c;
        transform: none;
    }
    
    .megamenu-footer {
        margin-top: 15px;
        text-align: center;
    }
    
    .megamenu-footer .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services-megamenu-header p {
        font-size: 13px;
    }
    
    /* Mobile Navigation Adjustments */
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-actions {
        order: 2;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-logo .logo {
        max-height: 70px;
        margin: 0 auto;
    }
    
    /* Mobile Top Bar */
    .top-bar .row {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar .col-md-4 {
        margin-bottom: 10px;
    }
    
    .social-icons {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .social-icon {
        margin: 0 8px;
    }
    
    /* Additional mobile optimizations */
    .book-now-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content h3 {
        font-size: 24px;
    }
    
    .services h2 {
        font-size: 36px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .logo {
        max-height: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 20px 15px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        margin: 5px;
    }
    
    /* Mobile Search Bar */
    .service-search-container {
        margin: 30px 0 40px 0;
        padding: 0 15px;
    }
    
    .search-bar {
        max-width: 100%;
        border-radius: 25px;
    }
    
    .search-input {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .search-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .search-tags {
        gap: 8px;
    }
    
    .search-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Mobile Service Tags */
    .service-tags {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .service-tag {
        padding: 5px 12px;
        font-size: 11px;
        border-radius: 15px;
    }
    
    /* Mobile Price Pills */
    .service-price {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 120px;
        border-radius: 20px;
    }
}

/* Large screens - Full width optimization */
@media (min-width: 1400px) {
    .container {
        padding: 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
    }
    
    .hero {
        padding: 120px 0;
    }
    
    .hero-content h2 {
        font-size: 48px;
    }
}

/* Extra large screens */
@media (min-width: 1800px) {
    .container {
        padding: 0 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 60px;
    }
}

.services-megamenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.services-megamenu-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.services-megamenu-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: -0.5px;
}

.services-megamenu-header p {
    color: #666;
    margin: 8px 0 0 0;
    font-size: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.service-category {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.service-category:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.service-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.3px;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    margin-bottom: 8px;
}

.service-list a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 400;
}

.service-list a:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding-left: 16px;
    transform: translateX(4px);
}

.megamenu-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.megamenu-footer .btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.megamenu-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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



.dropdown-menu li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.dropdown-menu a {
    padding: 14px 24px;
    font-weight: 400;
    color: #2c2c2c;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding-left: 28px;
}

/* Hero Section */
.hero {
    background: url('67fec88b7da65a383b9e1080.jpg') center center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .hero-main-headline {
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    margin: 0 12px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    outline: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #D4AF37; /* Gold */
    border: 2px solid #D4AF37; /* Gold */
}

.btn-outline:hover {
    background-color: #D4AF37; /* Gold */
    color: white;
}

/* Additional focus and active state overrides to prevent blue outlines */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Focus styles for all buttons - No blue outlines */
.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.phone-number {
    margin-top: 20px;
}

.phone-number a {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.phone-number a:hover {
    text-decoration: underline;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.services h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.services-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.service-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.service-price {
    background: white;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-align: center;
    min-width: 140px;
}

.service-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
}

.service-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.service-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-buttons .btn {
    margin: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    outline: none;
}

.service-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-buttons .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Service Tags Styling */
.service-tags {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: auto;
}

.service-tag {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 134, 11, 0.9) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    line-height: 1.2;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 1) 0%, rgba(184, 175, 11, 1) 100%);
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: white;
}

.about h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background-color: white;
}

.blog h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-post h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.blog-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Promotions Section */
.promotions {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.promotions h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.promotions h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.promotions p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.testimonials-intro {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.reviews-container {
    margin: 40px 0;
    padding: 20px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.lc_reviews_widget {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.testimonials-cta {
    margin-top: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonials-cta p {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonials-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .reviews-container {
        margin: 30px 0;
        padding: 15px;
    }
    
    .testimonials-cta {
        margin-top: 30px;
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-intro {
        font-size: 1rem;
    }
    
    .reviews-container {
        padding: 10px;
    }
    
    .testimonials-cta {
        padding: 20px;
    }
    
    .testimonials-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.hours {
    margin-top: 20px;
}

.hours p {
    font-weight: bold;
    color: #333;
}

/* Map Section */
.map {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.map h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.map p {
    font-size: 18px;
    color: #666;
}

/* Enforce white backgrounds on all service detail page cards */
.service-details .session-option,
.service-details .booking-card,
.service-details .info-card,
.service-details .tips-card,
.service-details .card,
.related-services .related-service-card,
.service-hero,
.service-details,
.page-header {
    background: #fff !important;
}

/* Privacy Policy Page Styles */
.privacy-policy {
    background: white;
    padding: 80px 0;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #2c2c2c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #D4AF37;
}

.policy-section h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.policy-section p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-info {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-info i {
    color: #D4AF37;
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #B8860B;
    text-decoration: underline;
}

.policy-footer {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 30px;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 500;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 60px 0;
    }
    
    .policy-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .policy-content {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-info,
    .policy-footer {
        padding: 20px;
    }
}

/* LeadConnector Chat Widget Styles */
#leadconverter-chat-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure chat widget is visible on all devices */
@media (max-width: 768px) {
    #leadconverter-chat-widget {
        bottom: 15px !important;
        right: 15px !important;
    }
}

/* Force chat widget visibility */
.leadconverter-chat-widget,
[data-widget-id="67e7750614647131671cdf71"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Map Section Styles */
.map {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.map h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.map-intro {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.map-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    margin-top: 40px;
}

.map-details {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.map-details h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.map-details p {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-details i {
    color: #D4AF37;
    width: 20px;
    text-align: center;
}

.map-details a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-details a:hover {
    color: #B8860B;
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .map {
        padding: 60px 0;
    }
    
    .map h2 {
        font-size: 2rem;
    }
    
    .map-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-details {
        padding: 25px;
    }
    
    .map-details h3 {
        font-size: 1.3rem;
    }
    
    .map-details p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .map h2 {
        font-size: 1.8rem;
    }
    
    .map-intro {
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-details {
        padding: 20px;
    }
}

/* Error Page Styles */
.error-page {
    background: white;
    padding: 120px 0 80px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-page h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.error-subtitle {
    font-size: 1.1rem;
    color: #8a8a8a;
    margin-bottom: 40px;
    line-height: 1.5;
}

.error-actions {
    margin-bottom: 50px;
}

.error-actions .btn {
    margin: 0 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.error-links h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.error-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.error-link-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    color: #2c2c2c;
    text-decoration: none;
}

.error-link-card i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.error-link-card span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.error-contact {
    background: rgba(248, 249, 250, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.error-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.error-contact p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 10px;
    color: #2c2c2c;
    font-size: 1rem;
}

.contact-info i {
    color: #D4AF37;
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #B8860B;
    text-decoration: underline;
}

/* Responsive Design for Error Pages */
@media (max-width: 768px) {
    .error-page {
        padding: 100px 0 60px 0;
    }
    
    .error-page h1 {
        font-size: 4rem;
    }
    
    .error-page h2 {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1.2rem;
    }
    
    .error-subtitle {
        font-size: 1rem;
    }
    
    .error-actions .btn {
        margin: 5px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .error-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .error-link-card {
        padding: 20px 15px;
    }
    
    .error-link-card i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .error-link-card span {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .error-page h1 {
        font-size: 3rem;
    }
    
    .error-page h2 {
        font-size: 1.8rem;
    }
    
    .error-links-grid {
        grid-template-columns: 1fr;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Terms of Service Page Styles */
.terms-of-service {
    background: white;
    padding: 80px 0;
}

.terms-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    color: #2c2c2c;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #D4AF37;
}

.terms-section p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.terms-section a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #B8860B;
    text-decoration: underline;
}

.terms-footer {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 30px;
    text-align: center;
}

.terms-footer p {
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 500;
}

/* Responsive Design for Terms of Service */
@media (max-width: 768px) {
    .terms-of-service {
        padding: 60px 0;
    }
    
    .terms-content {
        padding: 30px;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
    }
    
    .terms-section p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .terms-content {
        padding: 25px;
    }
    
    .terms-section h2 {
        font-size: 1.4rem;
    }
    
    .terms-section p {
        font-size: 0.95rem;
    }
}
