/* Global Styles */
:root {
    /* Color Variables */
    --color-bg: #0e1c26;
    --color-section: #1a2c38;
    --color-text: #fff;
    --color-accent1: #ff6b35; /* Orange */
    --color-accent2: #00b2ca; /* Turquoise */
    --font-main: 'Open Sans', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    padding-top: 4rem; /* Space for fixed header */
}

a {
    text-decoration: none;
    color: var(--color-accent2);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent1);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-left: 10px;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 1rem;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

nav a:hover {
    color: var(--color-accent2);
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-accent2);
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-image: url('./img/rWLV23.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(14, 28, 38, 0.85);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--color-accent2);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--color-accent1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent2);
    color: var(--color-accent2);
}

.btn-outline:hover {
    background-color: var(--color-accent2);
    color: #fff;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--color-accent1);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background-color: var(--color-section);
}

.about-image {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover .about-featured-image {
    transform: scale(1.03);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-item {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-item:hover {
    transform: translateY(-10px);
}

.about-icon {
    margin-bottom: 1rem;
}

.about-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-accent2);
}

/* Services Section */
.services {
    background-color: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--color-section);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-accent2);
}

.service-price {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-accent1);
}

/* Process Section */
.process {
    background-color: var(--color-section);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent1);
    z-index: 1;
}

.process-step {
    width: 30%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background-color: var(--color-section);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-accent1);
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-accent2);
}

.testimonial-position {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background-color: var(--color-section);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #c23d3d;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-accent2);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.checkbox-group {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--color-accent2);
    width: 18px;
    height: 18px;
}

/* Footer */
footer {
    background-color: var(--color-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-accent2);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--color-text);
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--color-accent2);
}

.footer-contact-info {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--color-accent2);
    color: #fff;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    margin: 0 10px;
    font-size: 0.8rem;
    color: var(--color-text);
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent2);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-section);
    padding: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup p {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    flex: 1 1 300px;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

/* Policy Pages */
.policy-page {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.policy-page h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-banner {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.policy-banner-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.policy-content {
    background-color: var(--color-section);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    color: var(--color-accent2);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--color-accent1);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th, .cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background-color: rgba(0, 178, 202, 0.1);
    color: var(--color-accent2);
}

.policy-update {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    opacity: 0.7;
}

.policy-back {
    text-align: center;
    margin-top: 2rem;
}

/* Thank You Page */
.thank-you {
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-section);
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--color-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    width: 100px;
    height: 100px;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--color-accent2);
}

.thank-you p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid, .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 0.8rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .about-grid, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-page {
        padding: 4rem 0;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 3.5rem;
    }
    
    .header-content {
        padding: 0.3rem 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    nav a {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .about-item, .service-content {
        padding: 1.5rem;
    }
    
    .about-item h3, .service-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-page {
        padding: 3rem 0;
    }
    
    .policy-content {
        padding: 1rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .policy-content h3 {
        font-size: 1.1rem;
    }
}