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

:root {
    --beige: #F5F1EB;
    --beige-dark: #E8E3DB;
    --brown: #8B7355;
    --brown-dark: #6B5A45;
    --brown-light: #A68B6F;
    --neutral: #D4C4B0;
    --neutral-dark: #C4B4A0;
    --text-dark: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: rgba(139, 115, 85, 0.1);
    --shadow-hover: rgba(139, 115, 85, 0.2);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--beige);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 1px 0 rgba(139, 115, 85, 0.08);
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 40px;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--brown-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 60px 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}


.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 1;
    padding-right: 60px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 550px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--brown-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 1px solid var(--brown-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--brown-dark);
    transform: translateY(0);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-logo {
    width: auto;
    height: auto;
    max-width: 450px;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.12);
    filter: drop-shadow(0 4px 16px rgba(139, 115, 85, 0.08));
}


/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brown-dark) 50%, transparent 100%);
    margin: 0 auto;
    border-radius: 0;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--brown-dark);
    border-radius: 50%;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 115, 85, 0.1) 50%, transparent 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.06);
    border: 1px solid rgba(139, 115, 85, 0.08);
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 300;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--brown-dark);
    font-weight: 600;
}

/* Services Section */
.services {
    background-color: var(--beige);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 115, 85, 0.1) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.06);
    border: 1px solid rgba(139, 115, 85, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139, 115, 85, 0.12);
    border-color: rgba(139, 115, 85, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--neutral) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--brown-dark);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-description {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
}

/* Clients Section */
.clients {
    background-color: var(--white);
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 115, 85, 0.1) 50%, transparent 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.client-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.06);
    border: 1px solid rgba(139, 115, 85, 0.08);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(139, 115, 85, 0.12);
    border-color: rgba(139, 115, 85, 0.2);
}

.client-card:hover::before {
    transform: scaleY(1);
}

.client-card.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.client-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.client-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--neutral) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brown-dark);
    transition: all 0.3s ease;
}

.client-card:hover .client-icon-wrapper {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.client-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.client-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.client-description {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background-color: var(--beige);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 115, 85, 0.1) 50%, transparent 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.06);
    position: relative;
    border: 2px solid rgba(139, 115, 85, 0.08);
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(139, 115, 85, 0.15);
    border-color: rgba(139, 115, 85, 0.25);
}

.pricing-card:hover::after {
    transform: scaleX(1);
}

.pricing-card.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pricing-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured {
    border-color: var(--brown-dark);
    border-width: 2px;
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
}

.pricing-card.featured::after {
    transform: scaleX(1);
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(139, 115, 85, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
    background-color: var(--brown-dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--brown-dark);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0 0 0;
    padding: 0;
}

.pricing-features li {
    padding: 14px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(139, 115, 85, 0.06);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--brown-dark);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 60px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.02em;
}

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

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-content.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    line-height: 1.9;
    font-weight: 300;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    background-color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.06);
    border: 1px solid rgba(139, 115, 85, 0.08);
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.12);
    border-left-color: var(--brown-dark);
    background-color: var(--white);
}

.contact-link:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    flex-shrink: 0;
    background: var(--beige);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    background: var(--brown-dark);
    color: var(--white);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--brown-dark);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    background-color: var(--brown-dark);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        flex-direction: column;
        text-align: left;
        padding: 120px 40px 80px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
        padding-right: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-logo {
        max-width: 100%;
        max-height: 500px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(245, 241, 235, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

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

    .services-grid,
    .clients-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card,
    .client-card,
    .pricing-card {
        padding: 35px 28px;
    }

    .about-content {
        padding: 40px 30px;
    }

    .contact-link {
        flex-direction: row;
        text-align: left;
        padding: 25px 30px;
    }

    .contact-info {
        text-align: left;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }
}

