/* ===== Base Styles ===== */
:root {
    --primary-color: #0088cc;
    --secondary-color: #ff6b6b;
    --accent-color: #6b47ff;
    --text-color: #333;
    --text-light: #777;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --success-color: #2ecc71;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.separator:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--secondary-color);
    left: 0;
    top: 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.btn.primary:hover {
    background: #0077b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-inner span {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle svg {
    width: 30px;
    height: 30px;
    fill: var(--text-color);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding: 0 60px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--bg-dark);
    animation: fadeInUp 0.8s ease;
}

.hero h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    flex: 1;
    position: relative;
    animation: fadeIn 1s ease;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.blob-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: blobAnimation 10s linear infinite alternate;
    opacity: 0.7;
}

@keyframes blobAnimation {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 40% 60% 55% 45% / 55% 65% 35% 45%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== About Section ===== */
.about {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
}

.about:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 71, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 1;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.about-text h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 120px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    position: relative;
}

.stat-number:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 136, 204, 0.2), rgba(107, 71, 255, 0.2));
    z-index: 1;
    border-radius: var(--border-radius);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 40px;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 136, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.service-card p {
    color: var(--text-light);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 136, 204, 0.1), rgba(107, 71, 255, 0.1));
    top: -150px;
    left: -150px;
}

.testimonials:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(0, 136, 204, 0.1));
    bottom: -150px;
    right: -150px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: rgba(0, 136, 204, 0.1);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--bg-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* ===== Pricing Section ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 40px;
}

.pricing-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 150px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 30px;
    color: white;
    text-align: center;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.currency {
    font-size: 20px;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 16px;
    margin-left: 5px;
}

.card-body {
    padding: 30px;
}

.features {
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features li svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: var(--success-color);
}

.features li.unavailable {
    color: var(--text-light);
}

.features li.unavailable svg {
    fill: #ddd;
}

.card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--bg-light);
}

.contact-container {
    display: flex;
    gap: 50px;
    margin: 0 40px 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info > p {
    margin-bottom: 40px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 136, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--primary-color);
}

.info-text span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--bg-dark);
}

.info-text p {
    color: var(--text-light);
}

.contact-form {
    flex: 1;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.2);
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Map section styles */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.map-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.map-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(0, 136, 204, 0.2);
    border-radius: var(--border-radius);
    box-sizing: border-box;
    pointer-events: none;
    z-index: 1;
}

.map-wrapper iframe {
    display: block;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.map-instructions {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.map-instructions h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.map-instructions p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .map-container {
        padding: 0 20px;
    }
}

/* ===== Footer ===== */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 40px 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    fill: white;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-nav-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav-column h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: #ddd;
}

.footer-nav-column ul li a:hover {
    color: white;
}

.footer-nav-column p {
    color: #ddd;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright p {
    font-size: 14px;
    color: #ddd;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--bg-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active svg {
        fill: var(--primary-color);
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .section-heading {
        margin-bottom: 40px;
    }
    
    .testimonials-slider,
    .services-grid,
    .pricing-cards {
        margin: 0 20px;
    }
    
    .contact-container {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

/* ===== Success Page Styles ===== */
.success-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--success-color);
}

.success-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.success-container p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 30px;
}

/* ===== Policy, Terms, Cookies Pages Styles ===== */
.policy-container {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.policy-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--bg-dark);
}

.policy-container h2 {
    font-size: 24px;
    margin: 40px 0 15px;
    color: var(--primary-color);
}

.policy-container p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-container ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: var(--text-light);
}

.back-to-home {
    display: inline-block;
    margin-top: 40px;
}

.back-to-home:hover {
    text-decoration: underline;
}