:root {
    --color-primary: #2F4F3E;
    --color-secondary: #D8CFC4;
    --color-bg: #F2F2F2;
    --color-text: #2B2B2B;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --shadow-sm: 0 0.125rem 0.5rem rgba(43, 43, 43, 0.1);
    --shadow-md: 0 0.25rem 1rem rgba(43, 43, 43, 0.15);
    --shadow-lg: 0 0.5rem 2rem rgba(43, 43, 43, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    position: relative;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #e8e4df 0%, #f5f3f0 50%, #dcd7d0 100%);
    overflow: hidden;
}

.animated-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 40%, rgba(47, 79, 62, 0.15) 0%, transparent 50%);
    border-radius: 45% 55% 48% 52% / 52% 48% 52% 48%;
    animation: fabricWave1 25s ease-in-out infinite;
    filter: blur(60px);
}

.animated-background::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at 70% 60%, rgba(216, 207, 196, 0.2) 0%, transparent 50%);
    border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%;
    animation: fabricWave2 30s ease-in-out infinite;
    filter: blur(50px);
}

@keyframes fabricWave1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 45% 55% 48% 52% / 52% 48% 52% 48%;
    }
    33% {
        transform: translate(5%, -8%) rotate(5deg) scale(1.05);
        border-radius: 48% 52% 52% 48% / 55% 45% 55% 45%;
    }
    66% {
        transform: translate(-3%, 5%) rotate(-3deg) scale(0.98);
        border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%;
    }
}

@keyframes fabricWave2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%;
    }
    40% {
        transform: translate(-6%, 7%) rotate(-4deg) scale(1.03);
        border-radius: 48% 52% 48% 52% / 52% 48% 55% 45%;
    }
    80% {
        transform: translate(4%, -5%) rotate(3deg) scale(0.97);
        border-radius: 55% 45% 52% 48% / 45% 55% 48% 52%;
    }
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.main-nav {
    display: flex;
    gap: var(--space-md);
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 80%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    width: 1.5rem;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.mobile-menu {
    position: fixed;
    top: 0;
    display: none;
    width: 80%;
    max-width: 20rem;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-xl) var(--space-md);
    z-index: 999;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
    display: flex;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.mobile-menu nav a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu nav a:hover {
    background: var(--color-bg);
}

.hero-section {
    padding: var(--space-xl) 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease;
    background: url("../images/hero-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 50rem;
    background: rgb(216, 207, 196, 0.6);
    padding: var(--space-lg);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    animation: fadeIn 1s ease 0.2s both;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    animation: fadeIn 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.6s both;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.features-section,
.services-preview,
.detailed-services,
.about-story,
.values-section,
.approach-section,
.why-choose-section,
.contact-section,
.map-section {
    padding: var(--space-xl) 0;
}

.features-section h2,
.section-header h2,
.services-preview h2,
.about-story h2,
.values-section h2,
.approach-section h2,
.why-choose-section h2,
.contact-section h2,
.map-section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
}

.features-grid,
.services-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-card,
.service-card,
.value-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: fadeIn 0.6s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover,
.service-card:hover,
.value-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-md);
}

.feature-icon,
.service-icon,
.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-primary), rgba(47, 79, 62, 0.7));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.feature-icon i,
.service-icon i,
.value-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.feature-card h3,
.service-card h3,
.value-card h3 {
    margin-bottom: var(--space-sm);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-sm);
    font-weight: 500;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(0.3rem);
}

.service-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
}

.service-detail-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-primary), rgba(47, 79, 62, 0.7));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--color-bg);
    border-radius: var(--radius-sm);
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.service-pricing {
    margin-top: var(--space-md);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(47, 79, 62, 0.05), rgba(216, 207, 196, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.story-content,
.approach-content {
    max-width: 50rem;
    margin: 0 auto;
}

.story-content p,
.approach-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.why-item {
    text-align: center;
    padding: var(--space-md);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.why-item h3 {
    margin-bottom: var(--space-xs);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: var(--space-md);
}

.info-items {
    margin-top: var(--space-lg);
}

.info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(0.5rem);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-primary), rgba(47, 79, 62, 0.7));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--color-white);
    font-size: 1.3rem;
}

.info-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.info-content p,
.info-content a {
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--color-bg);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-checkbox {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.map-wrapper {
    margin-top: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 28rem;
    border: none;
}

.thank-you-section,
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

.thank-you-content,
.error-content {
    max-width: 40rem;
}

.thank-you-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary), rgba(47, 79, 62, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-icon i {
    font-size: 3rem;
    color: var(--color-white);
}

.thank-you-content h1,
.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.thank-you-content p,
.error-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.thank-you-actions,
.error-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.error-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

.main-footer {
    background: linear-gradient(135deg, rgba(47, 79, 62, 0.95), rgba(43, 43, 43, 0.95));
    color: var(--color-white);
    padding: var(--space-lg) 0 var(--space-md);
    margin-top: var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-md);
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.privacy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(43, 43, 43, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: var(--space-md);
    z-index: 10000;
    transition: bottom 0.5s ease;
    box-shadow: var(--shadow-lg);
}

.privacy-popup.show {
    bottom: 0;
}

.privacy-content {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.privacy-content p {
    margin: 0;
    font-size: 0.95rem;
}

.privacy-content a {
    color: var(--color-secondary);
}

.privacy-accept {
    background: var(--color-white);
    color: var(--color-text);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.privacy-accept:hover {
    background: var(--color-secondary);
}

@media (min-width: 1024px) {
    .animated-background {
        background: linear-gradient(135deg, #e8e4df 0%, #f5f3f0 25%, #dcd7d0 50%, #f0ebe6 75%, #e3ddd7 100%);
    }
}

@media (max-width: 1024px) {
    .animated-background::before {
        filter: blur(40px);
        animation-duration: 20s;
    }

    .animated-background::after {
        filter: blur(35px);
        animation-duration: 25s;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .privacy-content {
        flex-direction: column;
        text-align: center;
    }

    .animated-background::before,
    .animated-background::after {
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        height: 20rem;
    }

    .error-number {
        font-size: 6rem;
    }

    .animated-background {
        background: linear-gradient(135deg, #e8e4df 0%, #f0ebe6 50%, #dcd7d0 100%);
    }

    .animated-background::before,
    .animated-background::after {
        filter: blur(25px);
        animation-duration: 15s;
    }

    .logo-text{
        font-size: 1.3rem;
    }
}

.legal-content{
    margin-top: var(--space-md);
}

