/* ===================================
   VARIABLES & RESET
   =================================== */

:root {
    /* Colors */
    --primary-color: #6B9B8E;
    --primary-dark: #5A8A7D;
    --primary-light: #8AB4A7;
    
    --bg-beige: #F5F3F0;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAF8;
    
    --text-dark: #454F5E;
    --text-gray: #6B6B6B;
    --text-light: #9B9B9B;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   UTILITIES
   =================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn--secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn--dark {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn--dark:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn--outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn--large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Icons */
.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.check-icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo .logo {
    height: 50px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: var(--primary-color);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        transition: right 0.4s ease;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-light) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__image {
    animation: fadeInRight 1s ease;
    position: relative;
}

.hero__image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

@media screen and (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero__image {
        order: -1;
    }
}

/* ===================================
   VALUES SECTION
   =================================== */

.values {
    padding: 60px 0;
    background-color: var(--bg-white);
}

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

.value-card {
    padding: 2rem;
    background-color: var(--bg-beige);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.value-text {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

.about__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about__image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}



@media screen and (max-width: 768px) {
    .about__image img {
        display: none;
    }
}

@media screen and (max-width: 968px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   SUPPORT SECTION
   =================================== */

.support {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-light) 100%);
}

.support__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.support__image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.support__text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.support__benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.support__benefit p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .support__image img {
        display: none;
    }
}

@media screen and (max-width: 968px) {
    .support__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   WHY TRUST SECTION
   =================================== */

.why-trust {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

.why-trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-card {
    padding: 2.5rem;
    background-color: var(--bg-beige);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.trust-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .why-trust {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-beige) 100%);
}

.services__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.services__text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.services__image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

@media screen and (max-width: 768px) {
    .services__image img {
        display: none;
    }
}

@media screen and (max-width: 968px) {
    .services__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services {
        padding: var(--section-padding-mobile) 0;
    }
    
    .services__image {
        order: -1;
    }
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

.pricing__intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border: 2px solid var(--bg-beige);
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card--featured {
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
}

.pricing-card--featured * {
    color: var(--bg-white);
}

.pricing-card--featured .pricing-card__features path {
    stroke: var(--bg-white);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.pricing-card__header {
    margin-bottom: 2rem;
}

.pricing-card__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card__subtitle {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-card--featured .pricing-card__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card__price {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-beige);
}

.pricing-card--featured .pricing-card__price {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.pricing-card__features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .pricing {
        padding: var(--section-padding-mobile) 0;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ZONE SECTION
   =================================== */

.zone {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-light) 100%);
}

.zone__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.zone__item {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.zone-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.zone__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.zone__text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.zone__contact {
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.zone__contact-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-link {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-color);
}

.zone__contact .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

@media screen and (max-width: 968px) {
    .zone__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zone {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
}

.contact__header {
    margin-bottom: 3rem;
}

.contact__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.contact__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--bg-beige);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem;
    background-color: var(--bg-beige);
    border-radius: 10px;
    transition: var(--transition);
}

.info-card:hover {
    background-color: var(--primary-color);
}

.info-card:hover * {
    color: var(--bg-white);
}

.info-card:hover .info-icon path {
    stroke: var(--bg-white);
}

.info-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.info-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-card a {
    color: var(--text-dark);
    font-size: 1rem;
}

.info-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

@media screen and (max-width: 968px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   FOOTER
   =================================== */

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

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer__logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer__nav h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__nav ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__nav a,
.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer__nav a:hover,
.footer__contact a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer__contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--primary-light);
}

@media screen and (max-width: 968px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show-scroll {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media screen and (max-width: 480px) {
    :root {
        --section-padding-mobile: 40px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
