/* Global Styles */
:root {
    --primary-color: #0C2340;      /* Primary dark indigo */
    --accent-color: #F9C846;       /* Gold accent */
    --white: #FFFFFF;              /* Clean white */
    --light-blue: #D6E6F2;         /* Light blue background */
    --dark-blue: #202A44;          /* Deep blue for headings */
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

section {
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Header Styles */
header {
    background-color: rgba(12, 35, 64, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo:hover {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(12, 35, 64, 0.8), rgba(12, 35, 64, 0.9)), url('./img/53Xsvt.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-blue);
}

/* About Section */
.about {
    background-color: var(--dark-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefits {
    background-color: var(--primary-color);
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: rgba(214, 230, 242, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: rgba(214, 230, 242, 0.15);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background-color: var(--dark-blue);
    text-align: center;
}

.service-tabs {
    margin-top: 40px;
}

.service-tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(249, 200, 70, 0.3);
}

.service-tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.service-tab-btn:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.service-tab-btn.active {
    color: var(--accent-color);
}

.service-tab-btn.active:after,
.service-tab-btn:hover:after {
    width: 100%;
}

.service-tab-content {
    background-color: rgba(214, 230, 242, 0.05);
    border-radius: 8px;
    padding: 30px;
    display: none;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.service-tab-content.active {
    display: block;
}

.service-tab-content h3 {
    margin-bottom: 20px;
    text-align: center;
}

/* Process Section */
.process {
    background-color: var(--primary-color);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background-color: rgba(214, 230, 242, 0.05);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    background-color: rgba(214, 230, 242, 0.1);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-color);
}

/* Contact Form */
.contact {
    background-color: var(--dark-blue);
    text-align: center;
}

.form-container {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: rgba(214, 230, 242, 0.05);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(214, 230, 242, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F9C846'%3E%3Cpath d='M8 12L0 4h16z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    background-color: rgba(214, 230, 242, 0.2);
    border: 2px solid rgba(249, 200, 70, 0.4);
    cursor: pointer;
}

select.form-control:hover, select.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(249, 200, 70, 0.2);
}

select.form-control option {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-input {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-label {
    font-size: 0.9rem;
}

.checkbox-label a {
    text-decoration: underline;
}

/* FAQ Section - Format Standard */
.faq {
    background-color: var(--primary-color);
    text-align: center;
    padding-bottom: 100px;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(214, 230, 242, 0.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(249, 200, 70, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(249, 200, 70, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    background-color: rgba(214, 230, 242, 0.05);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    text-align: left;
    position: relative;
    display: block;
    width: 100%;
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
    text-decoration: none;
}

.faq-question:hover {
    background-color: rgba(214, 230, 242, 0.1);
    color: var(--accent-color);
}

.faq-question.active {
    background-color: rgba(214, 230, 242, 0.1);
    color: var(--accent-color);
    border-bottom: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-question.active::after {
    content: "−";
}

.faq-answer {
    padding: 0 30px 0 34px;
    background-color: rgba(12, 35, 64, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    text-align: left;
    border-left: 4px solid rgba(249, 200, 70, 0.3);
    line-height: 1.8;
}

.faq-answer.show {
    max-height: 1000px;
    padding: 25px 30px 25px 34px;
}

.faq-answer p {
    margin-bottom: 10px;
    color: var(--light-blue);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p {
    margin-top: 20px;
    color: var(--light-blue);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-blue);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--light-blue);
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(214, 230, 242, 0.1);
}

.footer-bottom p {
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    width: 90%;
    max-width: 400px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1 1 100%;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* Policy Pages */
.policy-page {
    padding: 150px 0 80px;
}

.policy-container {
    background-color: rgba(214, 230, 242, 0.05);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(249, 200, 70, 0.3);
}

.policy-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 20px;
}

.policy-title {
    flex: 1;
}

.policy-title h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.policy-title p {
    color: var(--light-blue);
    margin-bottom: 0;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    text-align: left;
}

.policy-content h2:after {
    left: 0;
    transform: none;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
}

.policy-content p, .policy-content ul, .policy-content ol {
    margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    width: 90%;
    padding: 50px;
    background-color: rgba(214, 230, 242, 0.05);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    margin: 0 auto;
    border: 1px solid var(--accent-color);
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Error message */
.error-message {
    background-color: rgba(255, 100, 100, 0.2);
    border-left: 4px solid #ff6464;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #ffcccc;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    section {
        padding: 60px 0;
        width: 100%;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        height: 0;
        overflow: hidden;
        transition: var(--transition);
    }
    
    nav.active {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefit-cards, .process-steps {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
} 