/* Base Styles */
:root {
    --primary-color: #0077be;
    --secondary-color: #a2d4f5;
    --accent-color: #00aaff;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: #004a75;
    --light-bg: #f5f9fc;
    --border-radius: 8px;
    --card-radius: 12px;
    --shadow: 0 5px 15px rgba(0, 119, 190, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.btn-primary:hover {
    background: #0088d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
    color: var(--light-text);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(0, 119, 190, 0.1);
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: var(--light-text);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    flex: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.05) 50px,
        rgba(255, 255, 255, 0.05) 100px
    );
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 0;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: var(--light-text);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--card-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,229.3C672,224,768,192,864,160C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 190, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 119, 190, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.card-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.card-link:hover::after {
    margin-left: 10px;
}

/* Technology Section */
.technology {
    background-color: #ffffff;
}

.technology-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.technology-image {
    flex: 1;
}

.technology-image img {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
}

.technology-text {
    flex: 1;
}

.technology-text h2 {
    text-align: left;
}

.tech-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature {
    display: flex;
    gap: 15px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
}

.tech-icon img {
    width: 25px;
    height: 25px;
}

.tech-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Calculator Section */
.calculator {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-text);
}

.calculator h2,
.calculator .section-subtitle {
    color: var(--light-text);
}

.calculator-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}

.calculator-form {
    flex: 1.5;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="range"] {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--light-text);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.range-value {
    display: block;
    text-align: right;
    font-weight: 600;
    margin-top: 5px;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    font-size: 1rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-color);
    color: var(--light-text);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calculator-result {
    flex: 1;
    display: flex;
    align-items: center;
}

.result-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-card h3 {
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.result-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    position: relative;
}

.testimonial-carousel {
    position: relative;
    height: 300px;
    margin: 40px 0;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.control-prev, .control-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.control-prev:hover, .control-next:hover {
    background: var(--accent-color);
}

.control-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Process Section */
.process {
    background-color: #ffffff;
}

.process-timeline {
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: calc(50% - 30px);
    z-index: 1;
}

.process-step:nth-child(even) .step-number {
    left: auto;
    right: calc(50% - 30px);
}

.step-content {
    flex: 1;
    padding-right: 50px;
}

.process-step:nth-child(even) .step-content {
    padding-right: 0;
    padding-left: 50px;
    text-align: right;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-image {
    flex: 1;
    position: relative;
}

.step-image img {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-image:hover img {
    transform: scale(1.05);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    width: 2px;
    height: calc(100% - 30px);
    background: #e1e1e1;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

/* Map Section */
.service-area {
    background-color: var(--light-bg);
}

.map-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.map-wrapper {
    flex: 1.5;
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.marker-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 119, 190, 0.4);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.regions-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border-left: 5px solid transparent;
}

.region-card.active {
    border-left-color: var(--primary-color);
    transform: translateX(10px);
}

.region-card:hover {
    transform: translateX(10px);
}

.region-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.region-contact {
    margin-top: 10px;
    font-weight: 600;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-text);
}

.booking-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.booking-text {
    flex: 1;
}

.booking-text h2 {
    text-align: left;
    color: var(--light-text);
}

.booking-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.feature-icon img {
    width: 25px;
    height: 25px;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: var(--light-text);
}

.booking-form-container {
    flex: 1.5;
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--card-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    color: var(--light-text);
}

.booking-form .form-group input,
.booking-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    font-size: 1rem;
}

.booking-form .form-group input::placeholder,
.booking-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.consent-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.consent-checkbox input {
    width: 18px !important;
    height: 18px;
    cursor: pointer;
}

.consent-checkbox a {
    color: var(--light-text);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    background: var(--light-text);
    color: var(--primary-color);
}

.submit-btn:hover {
    background: #f1f1f1;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-column h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-text);
    transform: translateX(5px);
}

.footer-certification {
    margin-top: 30px;
}

.certification-logos {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.certification-logos img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--light-text);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .process-step {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content,
    .technology-content,
    .booking-content,
    .map-container {
        flex-direction: column;
    }
    
    .hero-image,
    .technology-image {
        margin-top: 30px;
    }
    
    .technology-text h2,
    .booking-text h2 {
        text-align: center;
    }
    
    .process-step {
        flex-direction: column !important;
        gap: 50px;
        text-align: center;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
        padding-left: 0;
    }
    
    .step-content {
        padding-right: 0;
    }
    
    .step-number {
        position: static;
        margin: 0 auto 20px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 99;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        height: 70px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .calculator-container {
        flex-direction: column;
    }
    
    .calculator-result {
        margin-top: 30px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-image {
        margin: 0 auto;
    }
    
    .testimonial-carousel {
        height: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .testimonial-carousel {
        height: 450px;
    }
} 