/* REV2 - Enhanced Styles combining best of all builds */

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

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    background-image: linear-gradient(to bottom right, #000000, #111111);
    background-attachment: fixed;
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Enhanced Glow Gradient Effect */
.glow-gradient {
    background: radial-gradient(circle, #fff9c4, #ffeb3b, #ffc107, #ff9800, #ff5722);
    background-size: 200% 200%;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    animation: glow-pulse 3s ease-in-out infinite;
    font-weight: 600;
}

@keyframes glow-pulse {
    0% {
        background-position: center;
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    }
    50% {
        background-position: 120% 120%;
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.8);
    }
    100% {
        background-position: center;
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    }
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #ffeb3b;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 2rem 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav .book-now-btn {
    color: #ffeb3b;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(17,17,17,0.7));
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.hero-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 300;
}

.service-area-notice {
    background: rgba(255, 235, 59, 0.1);
    border: 2px solid #ffeb3b;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.service-area-notice p {
    margin: 0;
    font-size: 1rem;
    color: #ffeb3b;
    font-weight: 500;
}

.service-area-notice strong {
    color: #fff;
}

/* Service Area Section */
.service-area-section {
    padding: 80px 0;
    background: rgba(17, 17, 17, 0.8);
}

.service-area-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffeb3b;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.area-info h3 {
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.area-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coverage-areas h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffeb3b;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.area-column li:before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.service-note {
    background: rgba(255, 235, 59, 0.1);
    border-left: 4px solid #ffeb3b;
    padding: 1rem 1.5rem;
    border-radius: 5px;
}

.service-note p {
    margin: 0;
    font-size: 0.95rem;
}

.service-note strong {
    color: #ffeb3b;
}

/* Service Area Visual Map */
.area-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-map {
    width: 400px;
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 235, 59, 0.05));
    border: 2px solid rgba(255, 235, 59, 0.3);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-point {
    width: 20px;
    height: 20px;
    background: #ffeb3b;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.6);
    animation: pulse 2s infinite;
}

.center-label {
    font-size: 0.8rem;
    color: #ffeb3b;
    font-weight: 600;
}

.radius-circle {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgba(255, 235, 59, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.radius-label {
    font-size: 0.9rem;
    color: #ffeb3b;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.location-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.marker {
    position: absolute;
    background: rgba(255, 235, 59, 0.9);
    color: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.marker-1 { top: 20%; left: 30%; }
.marker-2 { top: 15%; right: 25%; }
.marker-3 { bottom: 25%; left: 20%; }
.marker-4 { bottom: 30%; right: 30%; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Enhanced Mobile Services Styling */
.mobile-services-overview {
    padding: 80px 0;
    background: rgba(17, 17, 17, 0.9);
}

.mobile-services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffeb3b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 235, 59, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-service-card:hover {
    transform: translateY(-5px);
    border-color: #ffeb3b;
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.2);
}

.mobile-service-card.rapid {
    border-color: rgba(255, 152, 0, 0.5);
}

.mobile-service-card.rapid:hover {
    border-color: #ff9800;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.mobile-service-card.bridal {
    border-color: rgba(233, 30, 99, 0.5);
}

.mobile-service-card.bridal:hover {
    border-color: #e91e63;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.service-header-mobile h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffeb3b;
    letter-spacing: 1px;
}

.service-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-note-mobile {
    background: rgba(255, 235, 59, 0.1);
    border-left: 4px solid #ffeb3b;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    text-align: left;
}

.service-note-mobile p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.timing-options {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    text-align: left;
}

.timing-options p {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: #ff9800;
}

.timing-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timing-options li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.bridal-note {
    background: rgba(233, 30, 99, 0.1);
    border-left: 4px solid #e91e63;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    text-align: left;
}

.bridal-note p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.bridal-note strong {
    color: #e91e63;
}

.book-button-mobile {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
    margin-top: 1rem;
}

.book-button-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(17, 17, 17, 0.5);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-category {
    text-align: center;
    margin-bottom: 3rem;
}

.service-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.category-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffeb3b;
}

.service-details p {
    margin: 0.5rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffeb3b;
}

.duration {
    opacity: 0.7;
}

.book-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ffeb3b;
}

.feature h4 {
    color: #ffeb3b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ffeb3b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 40px 15px;
    }
}

/* Hidden class for service filtering */
.service-item.hidden {
    display: none;
}

/* Hidden class for service filtering */
.service-item.hidden {
    display: none;
}

/* Page-specific styles */
.page-content {
    padding-top: 100px; /* Account for fixed header */
}

.page-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(17,17,17,0.8));
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Styles */
.faqs {
    padding: 60px 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    border-color: #ffeb3b;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.5px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffeb3b;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Texture Generator Styles */
.texture-generator {
    padding: 60px 0;
}

.texture-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.texture-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.texture-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.texture-preview {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Booking Page Styles */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffeb3b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffeb3b;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

/* Mobile Responsive Updates for new pages */
@media (max-width: 767px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
    
    .texture-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* Enhanced Homepage Styles for REV2 */

/* Navigation enhancements */
.nav-cta {
    background: linear-gradient(45deg, #ffeb3b, #ffc107) !important;
    color: #000 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4) !important;
}

/* Enhanced Hero Section */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ffeb3b;
    color: #ffeb3b;
}

.cta-button.secondary:hover {
    background: #ffeb3b;
    color: #000;
}

/* Service Categories */
.service-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.category-tab:hover,
.category-tab.active {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    border-color: #ffeb3b;
    transform: translateY(-2px);
}

/* Enhanced Service Items */
.service-items.hidden {
    display: none;
}

.service-item.featured {
    border-color: #ffeb3b;
    background: rgba(255, 235, 59, 0.05);
    position: relative;
}

.service-item.premium {
    border-color: #9c27b0;
    background: rgba(156, 39, 176, 0.05);
}

.service-item.duo {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
}

.service-item.package {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.05);
}

.service-item.bridal {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.05);
}

.service-item.mobile-featured {
    border-color: #2196f3;
    background: rgba(33, 150, 243, 0.05);
}

.service-item.wedding-mobile {
    border-color: #ff5722;
    background: rgba(255, 87, 34, 0.05);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.service-header h3 {
    flex: 1;
    margin-right: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffeb3b;
    white-space: nowrap;
}

.price-note {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.savings {
    font-size: 0.9rem;
    color: #4caf50;
    font-weight: 500;
    display: block;
}

.badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #ffeb3b;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

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

.service-features li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

/* Membership Section */
.membership-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.membership-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.membership-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.membership-item.popular {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
}

.membership-item.premium {
    border-color: #9c27b0;
    background: rgba(156, 39, 176, 0.05);
}

.membership-item h4 {
    color: #ffeb3b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.membership-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.membership-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4caf50;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.membership-item.premium .membership-badge {
    background: #9c27b0;
}

.membership-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1rem 0;
}

.membership-item li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.membership-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

.membership-cta {
    text-align: center;
    margin-top: 2rem;
}

.book-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Loyalty Programs Section */
.loyalty-programs {
    padding: 80px 0;
    background: rgba(17, 17, 17, 0.5);
}

.loyalty-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.program-card h3 {
    color: #ffeb3b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-visual {
    margin: 1.5rem 0;
}

.loyalty-stamps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stamp {
    width: 40px;
    height: 40px;
    background: rgba(255, 235, 59, 0.2);
    border: 2px solid #ffeb3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffeb3b;
}

.stamp.free {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    font-weight: 600;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-icon {
    font-size: 2rem;
}

.shop-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.shop-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

/* Footer enhancements */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

/* Quick Navigation Pills */
.quick-nav {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-pill {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-pill:hover {
    background: rgba(255, 235, 59, 0.2);
    color: #ffeb3b;
    border-color: #ffeb3b;
}

/* Tan Care Sections */
.tan-care-section {
    padding: 60px 0;
}

.tan-care-section:nth-child(even) {
    background: rgba(17, 17, 17, 0.3);
}

.care-content {
    display: grid;
    gap: 2rem;
}

.care-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.care-card h3 {
    color: #ffeb3b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.care-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

.care-list strong {
    color: #ffeb3b;
}

/* Policies Section */
.policies-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.policy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.policy-card.important {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.05);
}

.policy-card h3 {
    color: #ffeb3b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-card h4 {
    color: #ffeb3b;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
}

.terms-content {
    display: grid;
    gap: 2rem;
}

.terms-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-card h3 {
    color: #ffeb3b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.terms-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

/* Mobile Responsive Updates */
@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-logo {
        max-width: 280px;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-map {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .marker {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .category-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-header h3 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-stamps {
        justify-content: center;
    }
    
    .nav-pills {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .nav-pill {
        white-space: nowrap;
        flex-shrink: 0;
    }
}