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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #18181b;
    color: #f4f4f5;
    line-height: 1.6;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(10px);
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    text-decoration: none;
    color: #f4f4f5;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f59e0b;
}

/* Services Header */
.services-header {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1920x1080?photography-service') no-repeat center center/cover;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.service-item {
    background-color: #27272a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h2 {
    font-size: 1.5rem;
    margin: 1rem;
}

.service-item p {
    margin: 0 1rem 1rem;
    color: #a1a1aa;
}

.learn-more {
    display: inline-block;
    margin: 0 1rem 1rem;
    color: #f59e0b;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #d97706;
}

/* Pricing Section */
.pricing {
    background-color: #27272a;
    padding: 4rem 5%;
}

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

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

.pricing-item {
    background-color: #3f3f46;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.pricing-item .price {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.pricing-item ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.pricing-item li {
    margin-bottom: 0.5rem;
}

.book-now {
    display: inline-block;
    background-color: #f59e0b;
    color: #18181b;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.book-now:hover {
    background-color: #d97706;
}

.featured {
    background-color: #4b5563;
    border: 2px solid #f59e0b;
}

.mobile-nav {
    display: none;
}

/* Footer */
footer {
    background-color: #27272a;
    padding: 1rem 5%;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .desktop-nav {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .hero-carousel {
        display: block;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(24, 24, 27, 0.9);
        border-top: 1px solid #2d2d2d;
        padding: 0.5rem;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
        justify-content: space-around;
        z-index: 1000;
    }
    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        font-size: 0.75rem;
        transition: color 0.3s ease;
        color: #f4f4f5;
    }
    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: #f59e0b;
    }
    .mobile-nav svg {
        width: 1.5rem;
        height: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .services-header h1 {
        font-size: 2.5rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    footer {
        display: none;
    }
}