/* 
==============================
    General Styles 
==============================
*/
:root {
    --orange: #FFA500;
    --purple: #5F27CD;
    --text: #212121;
    --white: #FFFFFF;
    --light-bg: #F5F6FA;
    --accent-green: #27AE60;
    --accent-teal: #16A085;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-green), var(--accent-teal));
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

ul {
    list-style: none;
}

/* 
==============================
    Cookie Popup
==============================
*/
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex-grow: 1;
    margin-bottom: 0;
}

.cookie-btn {
    background-color: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn:hover {
    background-color: var(--accent-teal);
    box-shadow: var(--shadow);
}

/* 
==============================
    Header & Navigation
==============================
*/
.site-header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list li a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-list li a:hover {
    color: var(--accent-green);
}

.nav-list li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: var(--transition);
}

.nav-list li a:hover:after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(to right, var(--accent-green), var(--accent-teal));
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}

.nav-cta:after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* 
==============================
    Hero Section
==============================
*/
.hero-section {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--accent-teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 
==============================
    About Section
==============================
*/
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefits-list {
    margin-top: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* 
==============================
    Services Section
==============================
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 100px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* 
==============================
    Why Us Section
==============================
*/
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-item {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.why-us-icon {
    margin-bottom: 15px;
}

.why-us-icon img {
    width: 80px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* 
==============================
    Process Section
==============================
*/
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 50px 0;
}

.process-steps:after {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--purple));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 22%;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 20px;
    font-weight: bold;
    box-shadow: var(--shadow);
}

/* 
==============================
    Testimonials Section
==============================
*/
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    position: relative;
    padding: 10px 0 20px;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* 
==============================
    Contact Section
==============================
*/
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 160, 134, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-group.checkbox label {
    font-weight: normal;
    font-size: 0.9rem;
}

.submit-button {
    background: linear-gradient(to right, var(--accent-green), var(--accent-teal));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map img {
    width: 100%;
}

/* 
==============================
    FAQ Section
==============================
*/
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item h3 {
    padding: 20px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: var(--transition);
}

.faq-item.active h3:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

/* 
==============================
    Footer Section
==============================
*/
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-green), var(--accent-teal));
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 
==============================
    Thank You Page
==============================
*/
.thank-you-section {
    text-align: center;
    padding: 100px 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon img {
    width: 100px;
    margin: 0 auto;
}

.thank-you-frame {
    margin-bottom: 30px;
    padding: 40px 30px;
    border: 2px solid var(--accent-green);
    border-radius: var(--radius);
    background-color: rgba(39, 174, 96, 0.05);
    position: relative;
    box-shadow: var(--shadow);
}

.thank-you-frame:before,
.thank-you-frame:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-style: solid;
    border-color: var(--accent-teal);
}

.thank-you-frame:before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.thank-you-frame:after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.phone-number {
    font-size: 1.5rem;
    margin: 20px 0 30px;
}

.action-buttons {
    margin-top: 40px;
}

.back-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.back-button:hover {
    background-color: var(--accent-teal);
    color: var(--white);
}

/* 
==============================
    Legal Pages
==============================
*/
.legal-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-content h1 {
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 40px;
}

.legal-content h2:after {
    margin-left: 0;
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 20px;
}

.legal-content ul, .legal-content ol {
    margin-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* 
==============================
    Responsive Styles
==============================
*/
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-steps:after {
        display: none;
    }
    
    .process-step {
        width: 48%;
        margin-bottom: 30px;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 30px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .process-step {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 