/* Base Styles */
:root {
    --bg-color: #0f172a;
    --accent-gold: #eab308;
    --accent-blue: #22d3ee;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-start: #22d3ee;
    --gradient-end: #3b82f6;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transform: translateX(-50%);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--text-white);
}

section {
    padding: 80px 0;
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    position: relative;
}

.logo a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.logo a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    color: var(--text-white);
    font-weight: 500;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mobile-menu-toggle {
    display: none;
}

.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
}

.menu-button span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* Main Content Styles */
main {
    margin-top: 80px;
}

/* Adjust anchor positioning to prevent header overlap */
section[id] {
    scroll-margin-top: 100px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* About Section */
.about {
    background-color: rgba(22, 33, 62, 0.3);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(22, 33, 62, 0.3);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 211, 238, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.service-icon {
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefits Section */
.benefits {
    background-color: rgba(22, 33, 62, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-slider {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(22, 33, 62, 0.3);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 211, 238, 0.1);
    flex: 1 1 300px;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 3rem;
    color: var(--accent-blue);
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
}

.client-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact {
    background-color: rgba(22, 33, 62, 0.3);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 4px;
    background-color: rgba(15, 23, 42, 0.7);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
}

.form-check a {
    color: var(--accent-blue);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: rgba(22, 33, 62, 0.5);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    width: 100%;
}

.faq-question:hover {
    background-color: rgba(22, 33, 62, 0.7);
}

.faq-question span {
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

.faq-active .faq-question {
    background-color: rgba(34, 211, 238, 0.1);
}

/* Footer Styles */
.site-footer {
    background-color: rgba(15, 23, 42, 0.9);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    position: relative;
    margin-bottom: 25px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
}

.contact-list,
.footer-links {
    list-style: none;
}

.contact-list li,
.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.contact-list .icon {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 9999;
    max-width: 350px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    display: none;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(22, 33, 62, 0.3);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.policy-container h1 {
    margin-bottom: 30px;
}

.policy-container h2 {
    font-size: 1.75rem;
    margin-top: 40px;
}

.policy-container ul,
.policy-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    background-color: rgba(22, 33, 62, 0.3);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.95);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .main-nav.menu-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .button {
        width: 100%;
    }

    .policy-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 40px 0;
    }

    .site-header {
        padding: 15px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
