/* Variables */
:root {
    --primary: #213F99;
    --accent-start: #F64C72;
    --accent-end: #FFA751;
    --bg-light: #F8F9FA;
    --text-dark: #2D2D2D;
    --text-light: #FFFFFF;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 6px;
    --container-width: 1200px;
    --section-padding: 80px 0;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-start);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: var(--section-padding);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.8rem;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 1.2rem 2.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 63, 153, 0.3);
    color: var(--text-light);
}

.btn-accent {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 249, 250, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
}

.logo {
    z-index: 1001;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-button a {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
}

.cta-button a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 180px 0;
    background-color: rgba(33, 63, 153, 0.03);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/BtsIg5.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
}

.hero h1 {
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

/* About Section */
.about {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    z-index: 1;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid var(--accent-start);
    border-right: 4px solid var(--accent-start);
    z-index: 1;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin: 1rem 0;
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.4rem;
    color: #666;
}

/* Services Section */
.services {
    background: linear-gradient(rgba(33, 63, 153, 0.03), rgba(33, 63, 153, 0.07));
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('img/BUnxsa.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover::before {
    height: 7px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 2rem auto;
    background-color: rgba(33, 63, 153, 0.1);
    border-radius: 50%;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-list {
    padding-left: 2rem;
    margin: 1.5rem 0;
    text-align: left;
}

.service-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* Benefits Section */
.benefits {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(33, 63, 153, 0.03), rgba(33, 63, 153, 0.07));
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/CYB1dI.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: grayscale(0.8);
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 5%;
    font-size: 40rem;
    opacity: 0.03;
    color: var(--primary);
    line-height: 1;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-text {
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    font-size: 1.4rem;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    background-color: var(--bg-light);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-left: 4px solid var(--primary);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(33, 63, 153, 0.03), rgba(33, 63, 153, 0.07));
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.contact-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/FkbSLA.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    filter: blur(2px);
}

.contact h2, .contact p.text-center {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(33, 63, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    flex-shrink: 0;
}

/* Order Form Section */
.order {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.order::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
    opacity: 0.1;
    border-radius: 50% 0 0 0;
}

.form-container {
    max-width: 600px;
    margin: 4rem auto 0;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-family: inherit;
    font-size: 1.6rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(33, 63, 153, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.5rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about h3,
.footer-contact h3,
.footer-legal h3 {
    color: var(--text-light);
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.footer-about h3::after,
.footer-contact h3::after,
.footer-legal h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-legal ul li {
    margin-bottom: 1rem;
}

.footer-legal a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
}

.cookie-btn.accept:hover {
    background-color: #1a3480;
}

.cookie-btn.more {
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }

    .hero::after {
        width: 70%;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content::before,
    .about-image::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .form-container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 57.5%;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 3rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        padding: 2rem;
        width: 90%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        margin: 0 auto;
    }
    .policy{
        padding: 12rem 0 !important;
    }
    .policy h1{
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 55%;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-container {
        padding: 2rem;
    }

    .btn {
        width: 100%;
    }
} 