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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

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

/* Color Variables */
:root {
    --navy-blue: #1e40af;
    --light-blue: #3b82f6;
    --black: #000000;
    --dark-gray: #1f1f1f;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-gray: #6b7280;
}

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

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--light-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--navy-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 250px;
    width: auto;
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: var(--light-blue);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--light-blue);
}

.cta-button.secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--navy-blue));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* About Section */
.about {
    background: var(--dark-gray);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(30, 64, 175, 0.15);
}

.feature-icon {
    color: var(--light-blue);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    background: var(--black);
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.platform-header i {
    font-size: 1.5rem;
}

.google-reviews .platform-header i {
    color: #4285f4;
}

.facebook-reviews .platform-header i {
    color: #1877f2;
}

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

.review-card, .review-placeholder {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover, .review-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

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

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-text {
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.reviewer-name {
    color: var(--light-blue);
    font-weight: 600;
}

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

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-link {
    background: #4285f4;
}

.google-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

.facebook-link {
    background: #1877f2;
}

.facebook-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

/* Facebook Preview Section */
.facebook-preview {
    margin-bottom: 2rem;
}

.facebook-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-image {
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.preview-image:hover {
    transform: translateY(-5px);
    background: rgba(24, 119, 242, 0.1);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.image-placeholder i {
    font-size: 2rem;
    color: #1877f2;
    margin-bottom: 0.5rem;
}

.image-placeholder span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.facebook-description {
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* Services Section */
.services {
    background: var(--dark-gray);
}

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

.service-card {
    background: var(--black);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
    border-color: var(--light-blue);
}

.service-icon {
    font-size: 3rem;
    color: var(--light-blue);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: var(--black);
}

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

/* Booking Section */
.booking-section {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.booking-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-widget {
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
}

.booking-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-blue));
}

.booking-icon {
    color: var(--white);
    font-size: 2rem;
}

.booking-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.operating-hours {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.closed-notice {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.booking-form {
    padding: 2rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 8px;
    background: var(--dark-gray);
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.book-now-btn {
    background: linear-gradient(135deg, var(--light-blue), var(--navy-blue));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(30, 64, 175, 0.1);
}

.contact-icon {
    color: var(--light-blue);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-details h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
}

.contact-details a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--white);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0;
    border-top: 1px solid rgba(30, 64, 175, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.footer-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.social-link:hover .fa-instagram {
    color: #E4405F;
}

.social-link:hover .fa-tiktok {
    color: #ff0050;
}

.social-link:hover .fa-facebook {
    color: #1877f2;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 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-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .reviews-platforms {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facebook-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .preview-image {
        padding: 1.5rem 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .hero-logo-img {
        height: 180px;
        max-width: 400px;
    }

    .about-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .contact-item,
    .feature {
        padding: 1.2rem;
    }
    
    .hero-logo-img {
        height: 140px;
        max-width: 300px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 150px;
    }

    .facebook-image-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .preview-image {
        padding: 1.2rem 0.8rem;
    }

    .image-placeholder i {
        font-size: 1.5rem;
    }

    .booking-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .booking-form {
        padding: 1rem;
    }
}
