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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111827;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.highlight {
    color: #fbbf24;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fbbf24;
    color: #000000;
}

.btn-primary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 64rem;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

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

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #d1d5db;
}

.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.hero-phone svg {
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.nav-btn.prev {
    left: 1.5rem;
}

.nav-btn.next {
    right: 1.5rem;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fbbf24;
    width: 2rem;
    border-radius: 1rem;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

/* About Section */
.about {
    background-color: #1f2937;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    background-color: #fbbf24;
    color: #000000;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature p {
    color: #d1d5db;
}

/* Services Section */
.services {
    background-color: #111827;
}

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

.service-card {
    background-color: #1f2937;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: #252f3f;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: #fbbf24;
}

.service-card {
    display: flex;
    gap: 1.5rem;
}

.service-icon {
    background-color: #fbbf24;
    color: #000000;
    padding: 1rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.service-content h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

/* Gallery Section */
.gallery {
    background-color: #1f2937;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    background-color: #111827;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.gallery-overlay svg {
    background-color: #fbbf24;
    color: #000000;
    padding: 0.75rem;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay svg {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 64rem;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #fbbf24;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.lightbox-nav:hover {
    color: #fbbf24;
}

.lightbox-nav.prev {
    left: 1.5rem;
}

.lightbox-nav.next {
    right: 1.5rem;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-info {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
}

.lightbox-info p:first-child {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.lightbox-info p:last-child {
    color: #9ca3af;
    margin-bottom: 0;
}

/* Reviews Section */
.reviews {
    background-color: #1f2937;
}

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

.review-card {
    background-color: #111827;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.review-card:hover {
    background-color: #1a202c;
    transform: translateY(-4px);
    border-color: #fbbf24;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fbbf24;
    opacity: 0.2;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.review-author span {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    background-color: #111827;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background-color: #1f2937;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.contact-icon {
    background-color: #fbbf24;
    color: #000000;
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #d1d5db;
    margin-bottom: 0;
}

.social-links {
    margin: 2rem 0;
}

.social-links h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-link {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: inline-flex;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #2563eb;
}

.map-container h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.map {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map:hover {
    filter: grayscale(0%);
}

.map-note {
    text-align: center;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-icon {
    background-color: #fbbf24;
    color: #000000;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.footer-logo h3 {
    color: #ffffff;
    margin-bottom: 0;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #3b82f6;
}

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

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .nav-btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }
}