/* 
* Main Stylesheet
* Author: Professional Web Developer
* Version: 1.0
*/

/* ===== VARIABLES ===== */
:root {
    --primary: #10CFC9;
    --secondary: #2C2E2F;
    --accent: #FFD93D;
    --background: #F4F4F4;
    --white: #FFFFFF;
    --light-gray: #EEEEEE;
    --gray: #888888;
    --dark-gray: #444444;
    --black: #000000;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--background);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.5em;
}

p {
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px 0;
    transition: var(--transition);
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li:not(:last-child) {
    margin-right: 20px;
}

.main-nav a {
    color: var(--secondary);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav a:not(.btn):after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.main-nav a:not(.btn):hover:after {
    width: 100%;
}

.main-nav a.btn {
    padding: 10px 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/R95eZy.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.hero-image {
    display: none; /* Hide the original image */
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

section:nth-child(even) {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.2em;
}

/* ===== ABOUT SECTION ===== */
.about .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 300px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-features {
    margin-top: 20px;
}

.about-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.about-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
}

.about-features li:after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 207, 201, 0.1);
    border-radius: 50%;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background-color: var(--white);
    color: var(--secondary);
    position: relative;
}

.benefits .section-header h2 {
    color: var(--secondary);
}

.benefits .section-header p {
    color: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    background-color: var(--background);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-size: 3em;
    font-weight: 800;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary);
    z-index: -1;
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--secondary);
    font-weight: 400;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    counter-reset: step-counter;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child):before {
    content: '';
    position: absolute;
    top: 60px;
    left: 25px;
    height: calc(100% - 20px);
    width: 2px;
    background-color: var(--light-gray);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    padding-top: 5px;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
}

/* ===== PRICING SECTION ===== */
.pricing-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.pricing-plan {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-plan.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-plan.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 50px;
}

.plan-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.plan-price {
    font-size: 1.2em;
    margin: 20px 0;
}

.plan-price .price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary);
}

.plan-price .period {
    color: var(--gray);
}

.plan-features {
    padding: 30px 0;
}

.plan-features ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: var(--dark-gray);
}

.plan-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary);
    font-weight: bold;
}

.plan-footer {
    text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '"';
    font-size: 50px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
}

.testimonial-content:before {
    top: -10px;
    left: -10px;
}

.testimonial-content:after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1em;
}

.author-info p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9em;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details li svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 207, 201, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9em;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--secondary);
    padding: 30px 0;
    color: var(--light-gray);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links ul.quick-links li a,
.footer-links ul.legal-links li a {
    color: var(--gray);
    transition: var(--transition);
    font-size: 14px;
}

.footer-links ul.quick-links li a:hover,
.footer-links ul.legal-links li a:hover {
    color: var(--primary);
}

.contact-info {
    font-size: 14px;
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9em;
}

/* ===== THANKS PAGE ===== */
.thanks-section {
    padding: 150px 0;
    background-color: var(--white);
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 100px;
    height: 100px;
}

.thanks-content h1 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.thanks-content .timeframe {
    color: var(--gray);
    font-style: italic;
}

.action-buttons {
    margin-top: 40px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    padding: 20px;
    z-index: 9999;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: var(--transition);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-content button {
    flex-shrink: 0;
}

/* ===== POLICY PAGES ===== */
.policy-page {
    padding: 80px 0;
}

.policy-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li,
.policy-content ol li {
    margin-bottom: 10px;
}

/* ===== MEDIA QUERIES ===== */
/* Medium Screens */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 2em;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.8em;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .pricing-plan {
        min-width: 280px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .menu-button {
        display: block;
    }
    
    .menu-toggle:checked ~ .main-nav {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .menu-toggle:checked ~ .menu-button span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle:checked ~ .menu-button span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-button span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .main-nav {
        display: none;
        opacity: 0;
        transform: translateY(-20px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        padding: 20px;
        transition: var(--transition);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav li {
        margin: 10px 0;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content button {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .process-step:not(:last-child):before {
        display: none;
    }
    
    .pricing-plan {
        min-width: 100%;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
} 