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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #2a2a2a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00E5FF, #00FFC6);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, #00FFC6, #00E5FF);
}

.btn-secondary {
    background: transparent;
    color: #00E5FF;
    border: 2px solid #00E5FF;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #00E5FF;
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #00E5FF;
    font-weight: 500;
}

.btn-outline:hover {
    background: #00E5FF;
    color: #1a1a1a;
    border-color: #00E5FF;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #00E5FF;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 229, 255, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #FF7A00;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #FFA24D;
    background: rgba(255, 122, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FF7A00;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('../images/fff.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #A7F7FF;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00E5FF, #00FFC6);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 229, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    word-wrap: break-word;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00E5FF, #00FFC6);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 229, 255, 0.3);
}

/* About Section */
.about {
    background: white;
}

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

.about-text h3 {
    color: #00E5FF;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.about-text h4 {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-text p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    padding: 0.75rem 0;
    color: #b0b0b0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00E5FF;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8bbd9, #fce4ec);
    border-radius: 15px;
    padding: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    border: 2px dashed #e91e63;
}

/* Services Section */
.services {
    background: #fafafa;
}

.services-grid {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    word-wrap: break-word;
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
}

.service-card ul {
    text-align: center;
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.service-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00E5FF;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Services Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-card {
        flex: none;
        width: 100%;
    }
}

/* Price Section */
.price {
    background: white;
}

.price-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.price-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    word-wrap: break-word;
}

.price-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.price-card h3 {
    color: #00E5FF;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    width: 100%;
    justify-content: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    min-width: 0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: #b0b0b0;
    flex-grow: 1;
    margin-right: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.price-item span:last-child {
    font-weight: 600;
    color: #00E5FF;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-note {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 255, 198, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.price-note p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Price Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .price-grid {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .price-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .price-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-card {
        flex: none;
        width: 100%;
    }
}

/* Gallery Section */
.gallery {
    background: #fafafa;
}

.gallery-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

/* Reviews Section */
.reviews {
    background: white;
}

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

.review-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-author strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.review-author span {
    display: block;
    color: #00E5FF;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Contacts Section */
.contacts {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 255, 198, 0.1));
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #00E5FF;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #A7F7FF;
}

.quick-booking {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.quick-booking h3 {
    color: #00E5FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quick-booking p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-note {
    color: #b0b0b0;
    font-style: italic;
}

.qr-card {
    margin-top: 1.25rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.qr-image {
    display: block;
    width: 240px;
    height: 240px;
    background: #fff;
    border-radius: 12px;
}

.qr-caption {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #A7F7FF;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #A7F7FF;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .feature {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature {
        flex: none;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-buttons {
        flex-direction: column;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .service-card,
    .price-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .quick-booking {
        padding: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* === Dark Theme with Neon Turquoise === */
:root {
    --bg: #2a2a2a;
    --surface: #3a3a3a;
    --text: #e0e0e0;
    --text-muted: #b0b0b0;
    --primary: #00E5FF;      /* neon turquoise */
    --secondary: #A7F7FF;    /* soft cyan for subtle accents */
    --accent: #00FFC6;       /* neon mint */
    --border: #555555;
    --shadow-rgb: 0, 0, 0; /* for consistent shadow tint */
}

/* Base */
body {
    color: var(--text);
    background-color: var(--bg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(var(--shadow-rgb), 0.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--shadow-rgb), 0.25);
    background: linear-gradient(135deg, var(--accent), var(--primary));
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: #ffffff;
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Header / Nav */
.header { background: transparent; border-bottom: none; }
.nav-brand h1 { color: var(--primary); text-shadow: 0 2px 4px rgba(0, 229, 255, 0.3); }
.nav-link { color: #FF7A00; background: transparent; border: 1px solid transparent; }
.nav-link:hover { color: #FFA24D; background: rgba(255, 122, 0, 0.12); border-color: rgba(255, 122, 0, 0.3); }
.bar { background: #ffffff; }

/* Hero */
.hero-title { color: #ffffff; }
.highlight { color: var(--secondary); }
.highlight::after { background: linear-gradient(90deg, var(--primary), var(--accent)); box-shadow: 0 2px 6px rgba(0, 229, 255, 0.35); }
.hero-subtitle { color: #f0f0f0; }
.feature { background: rgba(58, 58, 58, 0.95); border: 1px solid rgba(0, 229, 255, 0.2); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }
.feature:hover { border-color: rgba(0, 229, 255, 0.4); box-shadow: 0 20px 50px rgba(0, 229, 255, 0.2); }
.feature h3 { color: var(--text); }
.feature p { color: var(--text-muted); }

/* Sections */
.section-title { color: var(--text); }
.section-title::after { background: linear-gradient(90deg, var(--primary), var(--accent)); box-shadow: 0 2px 6px rgba(0, 229, 255, 0.25); }
.about { background: var(--surface); }
.about-text h3 { color: var(--primary); }
.about-text h4 { color: var(--text-muted); }
.about-text p, .about-list li { color: var(--text-muted); }
.about-list li::before { color: var(--primary); }
.image-placeholder { background: linear-gradient(135deg, #4a4a4a, #3a3a3a); border: 2px dashed var(--accent); color: var(--text-muted); }

/* Services */
.services { background: #1a1a1a; }
.service-card { background: var(--surface); border: 1px solid rgba(0, 229, 255, 0.15); }
.service-card:hover { border-color: rgba(0, 229, 255, 0.35); }
.service-card h3 { color: var(--text); }
.service-card p, .service-card li { color: var(--text-muted); }
.service-card li::before { color: var(--primary); }

/* Price */
.price { background: var(--surface); }
.price-card { background: #1a1a1a; border: 2px solid rgba(0, 229, 255, 0.12); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.price-card:hover { border-color: var(--primary); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
.price-card h3 { color: var(--primary); }
.price-item { border-bottom: 1px solid var(--border); }
.price-item span:first-child { color: var(--text-muted); }
.price-item span:last-child { color: var(--primary); }
.price-note { background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(0, 255, 198, 0.1)); border: 1px solid rgba(0, 229, 255, 0.25); }
.price-note p { color: var(--text); }

/* Gallery */
.gallery { background: #1a1a1a; }
.gallery-subtitle { color: var(--text-muted); }
.gallery-item { border: 1px solid rgba(0, 229, 255, 0.15); }
.gallery-item:hover { border-color: rgba(0, 229, 255, 0.35); }

/* Reviews */
.reviews { background: var(--surface); }
.review-card { background: #1a1a1a; border: 1px solid rgba(0, 229, 255, 0.15); }
.review-card:hover { border-color: rgba(0, 229, 255, 0.35); }
.review-text { color: var(--text-muted); }
.review-author { border-top: 1px solid var(--border); }
.review-author strong { color: var(--text); }
.review-author span { color: var(--primary); }

/* Contacts */
.contacts { background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(0, 255, 198, 0.1)); }
.contact-info h3 { color: var(--text); }
.contact-item strong { color: var(--text); }
.contact-item a { color: var(--primary); }
.contact-item a:hover { color: var(--secondary); }
.quick-booking { background: var(--surface); border: 1px solid rgba(0, 229, 255, 0.15); }
.quick-booking h3 { color: var(--primary); }
.quick-booking p, .booking-note { color: var(--text-muted); }

/* Footer */
.footer { background: #1a1a1a; color: white; }
.footer-section h4 { color: var(--secondary); }
.footer-section a { color: #b0b0b0; }
.footer-section a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid #333; color: #b0b0b0; }
