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

html {
    scroll-behavior: smooth;
}

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

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

/* Utility Classes */
.accent {
    color: #eab308;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #ca8a04;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #eab308;
    color: #000000;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-text p {
    font-size: 0.875rem;
    color: #eab308;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #eab308;
}

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

.social-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #eab308;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #eab308;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.mobile-contact .icon {
    color: #eab308;
}

.mobile-contact a {
    color: #d1d5db;
    text-decoration: none;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title span:first-child {
    display: block;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.info-item .icon {
    color: #eab308;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.feature-card:hover {
    border-color: #eab308;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #eab308;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #d1d5db;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.service-card:hover {
    border-color: #eab308;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: #eab308;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.service-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 1rem;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.service-features .icon {
    color: #eab308;
    width: 1rem;
    height: 1rem;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    group: hover;
}

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

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

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

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

.gallery-text {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-text {
    opacity: 1;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 64rem;
    max-height: 100%;
}

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

.modal-close:hover {
    color: #eab308;
}

.modal-close svg {
    width: 2rem;
    height: 2rem;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: #111827;
}

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

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

.review-card:hover {
    border-color: #eab308;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.quote-icon svg {
    width: 2rem;
    height: 2rem;
}

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

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #eab308;
}

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

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

.review-author h4 {
    color: #ffffff;
    font-weight: 600;
}

.review-author p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    font-style: normal;
}

.reviews-summary {
    text-align: center;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #374151;
}

.summary-stars {
    display: flex;
    gap: 0.25rem;
}

.rating {
    color: #ffffff;
    font-weight: 600;
}

.review-count {
    color: #9ca3af;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #1f2937;
}

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

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

.contact-items {
    margin-bottom: 3rem;
}

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

.contact-icon {
    color: #eab308;
    margin-top: 0.25rem;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

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

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

.contact-item a:hover {
    color: #eab308;
}

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

.social-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #374151;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    background-color: #4b5563;
}

.social-icon {
    color: #eab308;
    transition: transform 0.3s ease;
}

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

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.social-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.social-handle {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card {
    background-color: #111827;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: #111827;
}

.map-container {
    max-width: 64rem;
    margin: 0 auto;
}

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

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

.map-placeholder {
    background-color: #374151;
    border-radius: 0.75rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-icon {
    width: 4rem;
    height: 4rem;
    color: #eab308;
    margin: 0 auto 1rem;
}

.location-name {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-address {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    color: #eab308;
    margin-top: 0.25rem;
}

.location-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.location-item h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #d1d5db;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-buttons {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Footer */
.footer {
    background-color: #111827;
    border-top: 1px solid #1f2937;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-brand {
    grid-column: span 2;
}

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

.footer-logo img {
    height: 2.5rem;
    width: auto;
}

.footer-logo .logo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-text p {
    font-size: 0.875rem;
    color: #eab308;
}

.footer-brand p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

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

.footer-social a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #eab308;
}

.footer-social svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: #eab308;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-item .icon {
    color: #eab308;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #eab308;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-info {
        flex-direction: row;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .social-cards {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .location-buttons {
        flex-direction: row;
    }
    
    .service-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}