/* 
** Main Stylesheet for domain
** Colors:
** - Primary: #1e5f5c (deep emerald)
** - Accent: #d85c27 (terracotta)
** - Light Background: #f3e9d9 (light sand)
** - Secondary Text: #6b8c99 (slate blue)
** - Main Text: #333333 (graphite)
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1e5f5c;
}

p {
    margin-bottom: 15px;
}

a {
    color: #d85c27;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b34b1e;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1e5f5c, #184a7e);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #d85c27;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b34b1e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #1e5f5c;
    border: 2px solid #1e5f5c;
}

.btn-secondary:hover {
    background-color: #1e5f5c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Cookie Consent Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e5f5c;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.cookie-content {
    margin-bottom: 15px;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-cookie {
    background-color: #d85c27;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie:hover {
    background-color: #b34b1e;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: #1e5f5c;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #1e5f5c;
    transform: scale(1.05);
}

.logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: #1e5f5c;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: #1e5f5c;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    color: #d85c27;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d85c27;
    transition: width 0.3s ease;
}

.nav-list a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 100px;
    overflow: hidden;
    background: url('./img/Q6gLg3.jpg') center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 95, 92, 0.8), rgba(24, 74, 126, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #f3e9d9;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero .btn-primary {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

/* About Section */
.about {
    background-color: #f3e9d9;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transform: rotate(2deg);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: rotate(0);
}

/* Services Section */
.services {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #1e5f5c, #184a7e);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.service-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #1e5f5c;
    transition: all 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
    border-color: #d85c27;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #6b8c99;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .btn-secondary {
    align-self: center;
}

/* Benefits Section */
.benefits {
    background-color: #1e5f5c;
    color: #ffffff;
}

.benefits .section-title {
    color: #ffffff;
}

.benefits .section-title:after {
    background: #d85c27;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-item.framed {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: #f3e9d9;
}

.benefit-item h3 {
    color: #f3e9d9;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Process Section */
.process {
    background-color: #ffffff;
    position: relative;
}

.process:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#f3e9d9 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.process-steps:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(to right, #1e5f5c, #184a7e);
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e5f5c;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
}

.process-step h3 {
    margin-bottom: 10px;
}

.process-step p {
    color: #6b8c99;
}

/* Testimonials Section */
.testimonials {
    background-color: #f3e9d9;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 30px;
}

.testimonial-slider::-webkit-scrollbar {
    height: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: #d85c27;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: #f3e9d9;
}

.testimonial-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: rgba(30, 95, 92, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #333333;
    position: relative;
    padding-left: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #1e5f5c;
    margin-bottom: 5px;
}

.testimonial-position {
    color: #6b8c99;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form {
    background-color: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(243, 233, 217, 0.3);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 95, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.form-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    font-weight: 500;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e5f5c;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1e5f5c;
    box-shadow: 0 0 0 3px rgba(30, 95, 92, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 20px;
}

/* Contact Information Section */
.contact {
    background-color: #f3e9d9;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: #1e5f5c;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6b8c99;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding-bottom: 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    padding: 20px;
    background-color: #f3e9d9;
    font-weight: 600;
    color: #1e5f5c;
    display: block;
    transition: all 0.3s ease;
}

.faq-toggle {
    display: block;
    width: 100%;
    text-align: left;
    color: #1e5f5c;
    text-decoration: none;
    position: relative;
    padding-right: 30px;
}

.faq-toggle:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
}

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #6b8c99;
}

.faq-answer.active {
    padding: 20px;
    height: auto;
}

/* Footer */
.site-footer {
    background-color: #1e5f5c;
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column, .footer-links, .footer-contact {
    min-width: 0;
}

.footer-column h3, .footer-links h3, .footer-contact h3 {
    color: #ffffff;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-column h3:after, .footer-links h3:after, .footer-contact h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d85c27;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-icon {
    width: 18px;
    height: 18px;
    fill: #d85c27;
    margin-right: 10px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 70vh;
        padding-top: 80px;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .about-content, .contact-grid {
        flex-direction: column;
    }
    
    .testimonial-card {
        width: 85%;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .legal-links a {
        margin: 0 10px 10px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-toggle {
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 300;
        display: block;
    }
    
    .menu-icon {
        width: 30px;
        height: 3px;
        background-color: #1e5f5c;
        position: absolute;
        transition: all 0.3s ease;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .menu-icon:before, .menu-icon:after {
        content: "";
        width: 30px;
        height: 3px;
        background-color: #1e5f5c;
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .menu-icon:before {
        top: -8px;
    }
    
    .menu-icon:after {
        bottom: -8px;
    }
    
    .menu-icon.open {
        background-color: transparent;
    }
    
    .menu-icon.open:before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-icon.open:after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 200;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.mobile-open {
        right: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .service-card, .benefit-item {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
} 