/* Variables */
:root {
    --color-bg-primary: #eef2f3;
    --color-bg-secondary: #f9f7f6;
    --color-accent: #ff6b81;
    --color-heading: #2c2e3e;
    --color-text: #4f5969;
    --color-button-start: #ffd460;
    --color-button-end: #ff7e67;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
    --container-width: 1200px;
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: var(--font-main);
    background-color: var(--color-bg-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: var(--transition);
}

a:hover {
    color: var(--color-heading);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Layout classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Grid and Flexbox layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(to right, var(--color-button-start), var(--color-button-end));
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: white;
}

/* Header styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: var(--color-heading);
    font-weight: 600;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-heading);
}

/* Main content padding for fixed header */
main {
    margin-top: 80px;
}

/* Hero section with background image */
.hero-section {
    background: linear-gradient(rgba(44, 46, 62, 0.7), rgba(44, 46, 62, 0.7)), url('../img/nAPaxS.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* About section */
.about-section {
    background-color: var(--color-bg-secondary);
}

.about-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-container {
    background-color: var(--color-bg-primary);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.stat-text {
    font-weight: bold;
}

/* Services section */
.service-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-header {
    background-color: var(--color-heading);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.service-content {
    padding: 2rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-price {
    text-align: center;
    margin-top: 2rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Advantages section */
.advantages-section {
    background-color: var(--color-bg-secondary);
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-primary);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

/* Testimonials section */
.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    color: var(--color-accent);
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    margin-right: 1rem;
}

.author-name {
    font-weight: bold;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Team and testimonial images */
.testimonial-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    margin-right: 1rem;
    background-size: cover;
    background-position: center;
}

.testimonial-author .avatar-1 {
    background-image: url('../img/m8NSX5.jpg');
}

.testimonial-author .avatar-2 {
    background-image: url('../img/kfibcT.jpg');
}

.testimonial-author .avatar-3 {
    background-image: url('../img/nsmiVZ.jpg');
}

/* Process section */
.process-section {
    background-color: var(--color-bg-secondary);
    background-image: linear-gradient(rgba(249, 247, 246, 0.9), rgba(249, 247, 246, 0.9)), url('../img/kfibcT.jpg');
    background-size: cover;
    background-position: center;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--color-button-start), var(--color-button-end));
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact section */
.contact-section {
    background-color: var(--color-bg-primary);
    background-image: linear-gradient(rgba(44, 46, 62, 0.85), rgba(44, 46, 62, 0.85)), url('../img/nAPaxS.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-section h2, 
.contact-section h3,
.contact-section p,
.contact-section label {
    color: white;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

/* Contact form section */
.form-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox-label {
    display: flex;
    align-items: start;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.form-checkbox {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.form-checkbox-text {
    font-size: 0.9rem;
}

.form-submit-btn {
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: var(--color-heading);
    color: white;
    padding: 3rem 0;
}

.footer-link {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-divider {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Thank you page */
.thank-you-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.thank-you-icon {
    color: var(--color-accent);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thank-you-title {
    margin-bottom: 1.5rem;
}

.thank-you-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Policy pages */
.policy-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.policy-title {
    margin-top: 2rem;
}

.policy-contact {
    margin-top: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        text-align: center;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        margin: 0;
        padding: 1rem;
    }

    .mobile-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cookie-banner {
        flex-direction: column;
    }

    .cookie-banner .btn {
        margin-top: 1rem;
    }

    .col-2 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
} 