/* 
 * Main Stylesheet
 * Color Palette:
 * - Primary: Electric Coral - #FF5E5B
 * - Secondary: Cool Ultramarine - #3A86FF
 * - Accent: Metallic Lime - #B9E769
 * - Background: Pastel Jade - #E5F4F1
 * - Font: Inter (Bold for headings, Light for body)
 */

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background-color: #E5F4F1;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #FF5E5B;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #3A86FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF5E5B;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #FF5E5B;
    color: white;
}

.btn-primary:hover {
    background-color: #ff3330;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 94, 91, 0.3);
}

.btn-secondary {
    background-color: #3A86FF;
    color: white;
}

.btn-secondary:hover {
    background-color: #1a70ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(58, 134, 255, 0.3);
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(229, 244, 241, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
}

.logo svg {
    display: block;
    transition: transform 0.3s ease;
}

.logo svg:hover {
    transform: scale(1.05);
}

.site-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul li {
    margin-left: 1.5rem;
}

.site-nav ul li a {
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 5px 0;
}

.site-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF5E5B;
    transition: width 0.3s ease;
}

.site-nav ul li a:hover::after {
    width: 100%;
}

.btn-contact {
    padding: 8px 20px;
    background-color: #B9E769;
    color: #333 !important;
    border-radius: 30px;
}

.btn-contact:hover {
    background-color: #a8d94e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(185, 231, 105, 0.3);
}

.btn-contact::after {
    display: none;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: 0;
        right: 20px;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1001;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: #333;
        height: 2px;
        width: 25px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        bottom: 8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .site-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #E5F4F1;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 1000;
    }
    
    .site-nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .site-nav ul li {
        margin: 1rem 0;
    }
    
    .nav-toggle:checked ~ .site-nav {
        height: 100vh;
    }
    
    .nav-toggle:checked ~ .site-nav ul {
        opacity: 1;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(58, 134, 255, 0.7), rgba(185, 231, 105, 0.7));
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/PNle7q.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-text h2 {
    margin-top: 0;
}

/* Principles Section */
.principles {
    background-color: #E5F4F1;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #FF5E5B;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.principle-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.principle-card h3 {
    color: #3A86FF;
    margin-top: 1rem;
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem 2rem 2rem;
}

.service-content h3 {
    color: #FF5E5B;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B9E769;
    font-weight: 700;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3A86FF;
    margin-bottom: 1rem;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background-color: #E5F4F1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #B9E769;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #E5F4F1;
    padding: 1.2rem;
    cursor: pointer;
    position: relative;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background-color: #d9ecec;
}

.faq-answer {
    background-color: white;
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question {
    background-color: #3A86FF;
    color: white;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
    transform: rotate(45deg);
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1.2rem;
}

/* Contact Form Section */
.contact {
    background-color: #E5F4F1;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('./img/rpxfG8.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #3A86FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23333' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo svg {
    margin-bottom: 1rem;
}

.footer-info .company-description {
    max-width: 300px;
}

.footer-contact h3,
.footer-legal h3 {
    color: #B9E769;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-contact ul,
.footer-legal ul {
    list-style: none;
}

.footer-contact ul li,
.footer-legal ul li {
    margin-bottom: 0.8rem;
}

.footer-contact ul li a,
.footer-legal ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover,
.footer-legal ul li a:hover {
    color: #B9E769;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #ddd;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-content button {
    align-self: flex-end;
    padding: 8px 20px;
    background-color: #3A86FF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-content button:hover {
    background-color: #1a70ff;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-height: 400px;
    }
    
    .contact::before {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 50px 0;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 10px;
        width: calc(100% - 20px);
    }
} 