/* Variables */
:root {
    --color-background: #FAF5EF;
    --color-primary: #1C3FAA;
    --color-secondary: #F95A2C;
    --color-text-dark: #1B1B1B;
    --color-text-light: #7A7A7A;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: lowercase;
}

.main-nav {
    display: flex;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu a {
    color: var(--color-text-dark);
    font-weight: 500;
}

.menu a:hover {
    color: var(--color-secondary);
}

.cta-button {
    background: var(--color-primary);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Mobile Menu (No JS) */
.menu-toggle {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger,
.hamburger:before,
.hamburger:after {
    content: '';
    display: block;
    background: var(--color-text-dark);
    height: 3px;
    width: 24px;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger:before {
    transform: translateY(-8px);
}

.hamburger:after {
    transform: translateY(5px);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(28, 63, 170, 0.1), rgba(249, 90, 44, 0.1));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Services with Images Row Layout */
.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.service-card-img {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 0 0 2rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 1.5rem);
}

.service-card-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-img h3 {
    margin: 0 2rem 1rem;
    color: var(--color-primary);
}

.service-card-img p {
    margin: 0 2rem 1.5rem;
}

.service-card-img .btn-link {
    margin: 0 2rem;
    display: inline-block;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    width: 20%;
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    width: 100%;
    top: 25px;
    left: 60%;
    z-index: -1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Testimonials */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: var(--color-secondary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.author-info h4 {
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #fff;
}

.faq-question {
    background: var(--color-primary);
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-question:hover {
    background: #1834A0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

/* CSS-only accordion with :target */
.faq-item:target .faq-content {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-item:target .faq-question::after {
    content: '-';
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, rgba(28, 63, 170, 0.05), rgba(249, 90, 44, 0.05));
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.submit-button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background: var(--color-secondary);
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3, .footer h4 {
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--color-secondary);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-popup p {
    margin-right: 1rem;
    flex: 1;
}

#accept-cookies {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

#accept-cookies:hover {
    background: var(--color-secondary);
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-container h1 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.policy-container h2 {
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.policy-container p, .policy-container ul {
    margin-bottom: 1rem;
}

.policy-container ul {
    padding-left: 2rem;
    list-style-type: disc;
}

/* Thank You Page */
.thanks-container {
    max-width: 600px;
    margin: 5rem auto;
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.thanks-container h1 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.return-button {
    display: inline-block;
    margin-top: 2rem;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.return-button:hover {
    background: var(--color-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 80%;
        margin-bottom: 2rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .service-card-img {
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .menu-toggle-label {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        background: white;
        width: 80%;
        height: 100vh;
        padding: 5rem 2rem;
        z-index: 100;
        transition: right 0.3s ease;
    }
    
    .menu {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-toggle-label .hamburger {
        background: transparent;
    }
    
    .menu-toggle:checked ~ .menu-toggle-label .hamburger:before {
        transform: rotate(45deg);
    }
    
    .menu-toggle:checked ~ .menu-toggle-label .hamburger:after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-content, .about-content {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-row {
        flex-direction: column;
    }
    
    .service-card-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cookie-popup {
        flex-direction: column;
    }
    
    .cookie-popup p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
} 