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

:root {
    --primary-color: rgba(20, 38, 23, 1);
    --secondary-color: rgba(238, 238, 238, 1);
    --accent-color: rgba(167, 152, 67, 1);
    --olive-green: rgba(73, 89, 46, 1);
    --text-color: rgba(0, 0, 0, 1);
    --light-text: rgba(0, 0, 0, 0.7);
    --pink-accent: rgba(232, 59, 111, 1);
    --cream-accent: rgba(253, 204, 154, 1);
    --teal: rgba(80, 171, 169, 1);
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    letter-spacing: 0.02em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1.5rem 0;
    height: 100px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(14px 14px 36px rgba(0,0,0,0.5));
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.5s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.gallery-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-item.active {
    opacity: 1;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 2.5rem;
    width: 55px;
    height: 55px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    opacity: 0.7;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.hero-content {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 5;
    text-align: right;
    background: transparent;
    padding: 0;
    max-width: 400px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Approach Section */
.approach {
    padding: 7rem 0;
    background: var(--secondary-color);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.approach-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.approach-text p {
    margin-bottom: 1.8rem;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.02em;
    text-align: left;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin: 2.5rem 0;
}

.btn-read-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.testimonial-wrapper {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    pointer-events: auto;
}

blockquote {
    border-left: none;
    padding: 2rem 4rem;
    margin: 0;
    text-align: center;
    position: relative;
}

blockquote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--secondary-color);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 0;
}

blockquote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: var(--pink-accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    color: var(--pink-accent);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid var(--pink-accent);
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--pink-accent);
    opacity: 0.6;
}

.testimonial-nav:hover {
    background: var(--pink-accent);
    color: var(--white);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -20px;
}

.testimonial-nav.next {
    right: -20px;
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 1rem 0;
}

.service-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: lowercase;
}

.btn:hover {
    background: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 7rem 0;
    background: var(--secondary-color);
}

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

.contact-image img {
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 0.5rem;
    color: var(--pink-accent);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.subtitle {
    color: var(--light-text);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.05em;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.02em;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-accent);
    box-shadow: 0 0 0 3px rgba(232, 59, 111, 0.1);
}

.btn-submit {
    background: transparent;
    color: var(--pink-accent);
    border: 2px solid var(--pink-accent);
    padding: 14px 40px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-family: 'Montserrat', sans-serif;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--pink-accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 59, 111, 0.3);
}

.form-success {
    background: var(--pink-accent);
    color: var(--white);
    padding: 1.2rem;
    border-radius: 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 15px;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-text {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    font-weight: 300;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        gap: 1rem;
    }

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

    .hero-content {
        top: 20px;
        right: 20px;
        max-width: 250px;
    }

    .hero-content h1 {
        font-size: 24px;
        letter-spacing: 0.03em;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }

    .approach-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    blockquote {
        padding: 2rem 2rem;
    }

    blockquote::before {
        font-size: 80px;
        top: -30px;
    }

    blockquote p {
        font-size: 18px;
    }

    blockquote cite {
        font-size: 14px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-nav.prev {
        left: 10px;
    }

    .testimonial-nav.next {
        right: 10px;
    }

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

    .about-content .about-image {
        order: -1;
    }

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

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

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .approach-text h2 {
        font-size: 24px;
    }

    .services h2 {
        font-size: 22px;
    }

    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .approach-text p,
    body {
        font-size: 16px;
    }

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