/* Global Styles */
:root {
    --dark-blue: #040c2c;
    --medium-blue: #0a2151;
    --light-blue: #76c4f9;
    --pink: #f975c8;
    --orange: #ffa76a;
    --purple: #9a56e8;
    --text-color: #ffffff;
    --secondary-text: #b4b9c8;
    --border-radius: 10px;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(90deg, var(--light-blue) 0%, var(--pink) 50%, var(--orange) 100%);
    --gradient-button: linear-gradient(90deg, #76c4f9 0%, #f975c8 50%, #ffa76a 100%);
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Buttons */
.btn-gradient {
    display: inline-block;
    background: var(--gradient-button);
    color: var(--text-color);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(118, 196, 249, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(4, 12, 44, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-blue);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--secondary-text);
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    max-width: 500px;
    color: #333;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-icon {
    width: 40px;
    height: 40px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.cookie-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-banner .btn-primary {
    background: var(--gradient-button);
    color: white;
}

.cookie-banner .btn-secondary {
    color: #333;
    border-color: #333;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.workspace-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: rgba(10, 33, 81, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light-blue);
}

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

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pink);
}

.benefit-card p {
    color: var(--secondary-text);
}

.documents-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: rgba(10, 33, 81, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.city-graph-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-address {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-text);
}

.contact-address p {
    margin-bottom: 5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.analysis-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: inherit;
}

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

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--secondary-text);
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.thank-you-content p {
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.thank-you-image {
    margin: 40px 0;
}

.chart-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
}

/* Policy Pages */
.policy-content {
    padding: 60px 0;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--light-blue);
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--secondary-text);
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--secondary-text);
}

.policy-section ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-blue);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--secondary-text);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .why-us-content, .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text, .about-text {
        order: 1;
    }
    
    .hero-image, .about-image {
        order: 2;
    }
    
    .benefits-grid {
        order: 1;
    }
    
    .benefits-image {
        order: 2;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .benefit-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}