/* Base Styles */
:root {
    --color-primary: #0E1E36;
    --color-accent: #FF8A00;
    --color-background: #F4F4F9;
    --color-text: #212121;
    --color-mint: #61D4B3;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --container-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(14, 30, 54, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--color-accent);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(14, 30, 54, 0.25);
}

.btn:active {
    transform: translateY(0);
}

.btn--accent {
    background-color: var(--color-accent);
}

.btn--mint {
    background-color: var(--color-mint);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn--outline:hover {
    background-color: var(--color-accent);
    color: white;
}

@media (max-width: 576px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    position: relative;
    text-transform: lowercase;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 40%;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 4px;
}

.main-nav__list {
    display: flex;
    gap: 30px;
}

.main-nav__list a {
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
}

.main-nav__list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.main-nav__list a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 999;
    padding: 80px 20px 40px;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-menu--active .mobile-menu__container {
    transform: translateX(0);
}

.mobile-menu--active .mobile-menu__toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: white;
}

.mobile-menu--active .mobile-menu__toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu--active .mobile-menu__toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: white;
}

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__list li {
    margin-bottom: 20px;
}

.mobile-menu__list a {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    padding: 8px 0;
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    background-color: white;
    position: relative;
    overflow: hidden;
    padding: 160px 0 80px;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero__content {
    flex: 1;
}

.hero__title {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.hero__text {
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 600px;
}

.hero__image {
    flex: 1;
    position: relative;
}

.hero__image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .hero {
        padding: 130px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero__inner {
        flex-direction: column;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* About Section */
.about {
    background-color: white;
}

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 30, 54, 0.2);
}

.feature__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 2rem;
}

.feature__title {
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Services Section */
.services {
    background-color: var(--color-background);
}

.services__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 30, 54, 0.2);
}

.service__image {
    height: 200px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service:hover .service__image img {
    transform: scale(1.05);
}

.service__content {
    padding: 30px;
}

.service__title {
    margin-bottom: 15px;
}

.service__text {
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-us {
    background-color: white;
}

.why-us__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.why-us-item__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.why-us-item__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background-color: var(--color-background);
}

.testimonials__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(14, 30, 54, 0.1);
    line-height: 1;
}

.testimonial__text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial__author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial__author-position {
    font-size: 0.9rem;
    color: #666;
}

/* Form Section */
.contact-form {
    background-color: white;
}

.form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, white 0%, var(--color-background) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form__row {
    margin-bottom: 25px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.form__input,
.form__select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-mint);
    box-shadow: 0 0 0 3px rgba(97, 212, 179, 0.3);
}

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form__checkbox {
    margin-right: 10px;
    margin-top: 3px;
}

.form__checkbox-text {
    font-size: 0.95rem;
}

.form__checkbox-text a {
    color: var(--color-accent);
    font-weight: 600;
}

.form__checkbox-text a:hover {
    text-decoration: underline;
}

.form__submit {
    margin-top: 20px;
    width: 100%;
}

/* FAQ Section */
.faq {
    background-color: var(--color-background);
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item__question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-item--active .faq-item__question::after {
    content: '−';
}

.faq-item__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item--active .faq-item__answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* CTA Section */
.cta {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

.cta__title,
.cta__text {
    color: white;
}

.cta__inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .cta__buttons {
        flex-direction: column;
    }
}

/* Footer Separator */
.footer-separator {
    height: 60px;
    background-color: var(--color-background);
    position: relative;
    overflow: hidden;
}

.footer-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-accent);
    opacity: 0.1;
}

/* Footer Styles */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 80px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer__logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.footer__logo::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.footer__description {
    opacity: 0.8;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.footer__contact-list li,
.footer__link-list li,
.footer__policy-list li {
    margin-bottom: 12px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__contact-list li:hover,
.footer__link-list li:hover,
.footer__policy-list li:hover {
    opacity: 1;
}

.footer__contact-list a:hover,
.footer__link-list a:hover,
.footer__policy-list a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer__copyright {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    max-width: 350px;
    z-index: 1000;
}

.cookie-popup__content h3 {
    margin-bottom: 15px;
}

.cookie-popup__buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .cookie-popup {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
}

/* Policy Pages */
.policy-page {
    padding: 160px 0 80px;
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.policy-title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    margin-bottom: 20px;
}

/* Thank You Page */
.thank-you {
    padding: 160px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you__container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
}

.thank-you__icon {
    width: 100px;
    height: 100px;
    background-color: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #4CAF50;
    font-size: 3rem;
}

.thank-you__title {
    margin-bottom: 20px;
}

.thank-you__text {
    margin-bottom: 30px;
}