/* ====== VARIABLES ====== */
:root {
    --primary: #1A1B41;
    --accent: #FF6B6B;
    --background: #F7F7F7;
    --text: #2B2D42;
    --light-text: #6C757D;
    --border: #E0E0E0;
    --gradient: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

/* ====== RESET & BASE STYLES ====== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 2rem;
}
.legal-section h1{
    text-align: center;
}
h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    display: inline-block;
    margin-bottom: 5rem;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

section {
    padding: 10rem 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.accent {
    color: var(--accent);
}

/* ====== HEADER & NAVIGATION ====== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1.5rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    color: var(--primary);
    font-weight: 500;
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    font-weight: 600;
    padding: 1rem 2rem !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* ====== HERO SECTION ====== */
.hero-section {
    padding-top: 16rem;
    padding-bottom: 10rem;
    background-color: white;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}



.animated-title {
    position: relative;
    margin-bottom: 2.5rem;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}


.hero-subtitle {
    font-size: 2rem;
    color: var(--light-text);
    margin-bottom: 3rem;

    opacity: 1;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    padding: 1.4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
 
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.hero-image {
    position: relative;
    animation: floatAnimation 4s ease-in-out infinite;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeIn 1s 0.9s forwards;
    opacity: 1;
}


/* ====== ABOUT SECTION ====== */
.about-section {
    background-color: white;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
    text-align: left;
}

.about-text {
    animation: fadeIn 1s ease;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--accent);
    border-radius: var(--border-radius);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background-color: var(--background);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
}

/* ====== BENEFITS SECTION ====== */
.benefits-section {
    background-color: white;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    transition: var(--transition);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.benefit-item h3 {
    margin-bottom: 1rem;
}

/* ====== PROCESS SECTION ====== */
.process-section {
    background-color: var(--background);
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--border);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin: 2rem 0 2rem 50px;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.timeline-number {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    left: -65px;
    top: 15px;
}

.timeline-content h3 {
    margin-bottom: 1rem;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials-section {
    background-color: white;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--background);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 2rem;
    color: #FFD700;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-position {
    font-size: 1.4rem;
    color: var(--light-text);
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    background-color: var(--background);
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    margin-top: 3rem;
}

.contact-info {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.info-icon {
    margin-right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.info-text {
    flex: 1;
}

.info-text h3 {
    margin-bottom: 0.5rem;
}

.contact-image {
    margin-top: 3rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    z-index: -1;
    border-radius: calc(var(--border-radius) + 2px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check input {
    margin-right: 1rem;
}

.form-check label {
    font-size: 1.4rem;
}

.submit-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.form-errors {
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
}

.form-errors ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin: 0.5rem 0;
}

.form-errors li {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* ====== FOOTER ====== */
.main-footer {
    background-color: var(--primary);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ====== COOKIE POPUP ====== */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.cookie-popup.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-button {
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 107, 107, 0.3);
}

/* ====== MEDIA QUERIES ====== */
@media screen and (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3.2rem;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .contact-info {
        order: 1;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    section {
        padding: 6rem 0;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-section {
        padding-top: 12rem;
    }
}

/* ====== ANIMATION HELPER CLASSES ====== */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Add scroll reveal effect with CSS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} 