h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-primary);
    opacity: 0.9;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header-scrolled {
    background: rgba(245, 240, 235, 0.98);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu-list {
    display: flex;
    gap: 30px;
}

.nav-menu-item a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

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

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

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

.header-cta-button {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.header-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

.primary-button {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    padding: 15px 35px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.service-card-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 129, 122, 0.1), transparent);
    transition: all 0.8s ease;
}

.service-card-item:hover {
    transform: translateY(-10px) perspective(1000px) rotateY(5deg);
    box-shadow: var(--shadow-hover);
}

.service-card-item:hover::before {
    left: 100%;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    margin-top: 20px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary);
    font-weight: bold;
    opacity: 0.3;
}

.contact-form-wrapper {
    background: var(--bg-sage);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: white;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 129, 122, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-area {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-widget p,
.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.consent-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.consent-modal h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-toggle.active {
    background: var(--primary);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle.active::after {
    left: 28px;
}

@media (max-width: 768px) {
    .navigation-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        padding: 30px;
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation-menu.active {
        display: flex;
    }
    
    .nav-menu-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .consent-modal-content {
        padding: 25px;
        margin: 20px;
    }
}