/* 
* Color Palette:
* Primary: #1C2541 (deep indigo)
* Secondary: #3A506B (dusty blue)
* Accent: #FFB400 (golden yellow)
* Background: #F4F4F9
* Text: #1E1E24
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1E1E24;
    background-color: #F4F4F9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #3A506B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFB400;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: #1C2541;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    background-color: #3A506B;
    color: #F4F4F9;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    background-color: #1C2541;
    color: #F4F4F9;
}

.btn-accent {
    background-color: #FFB400;
    color: #1C2541;
}

.btn-accent:hover {
    background-color: #e6a200;
    color: #1C2541;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #FFB400;
    bottom: 0;
    left: 25%;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 37, 65, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F4F4F9;
    letter-spacing: 1px;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #FFB400;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #F4F4F9;
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FFB400;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Burger Menu (CSS only) */
.burger-toggle {
    display: none;
}

.burger-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #F4F4F9;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.burger-btn span:nth-child(1) {
    top: 0;
}

.burger-btn span:nth-child(2) {
    top: 8px;
}

.burger-btn span:nth-child(3) {
    top: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('./img/dR57Q.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #F4F4F9;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 37, 65, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #F4F4F9;
    animation: fadeIn 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease 0.3s both;
}

.hero .btn {
    animation: fadeIn 1s ease 0.6s both;
}

/* About Section */
.about {
    background-color: #F4F4F9;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background-color: #F4F4F9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 10px;
}

/* Advantages Section */
.advantages {
    background-color: #1C2541;
    color: #F4F4F9;
}

.advantages .section-title h2 {
    color: #F4F4F9;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #FFB400;
}

.advantage-title {
    margin-bottom: 15px;
    color: #F4F4F9;
}

/* Testimonials Section */
.testimonials {
    background-color: #F4F4F9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: #FFB400;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* Contact Form Section */
.contact {
    background-color: #F4F4F9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.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 #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #3A506B;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #3A506B;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

/* FAQ Section */
.faq {
    background-color: #F4F4F9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    background-color: #fff;
    color: #1C2541;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question label {
    display: block;
    padding-right: 30px;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #3A506B;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-toggle {
    display: none;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-toggle:checked ~ .faq-question {
    background-color: #3A506B;
    color: #F4F4F9;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-toggle:checked ~ .faq-question::after {
    content: '-';
    color: #F4F4F9;
}

/* Footer Styles */
footer {
    background-color: #1C2541;
    color: #F4F4F9;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F4F4F9;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-nav h3, .footer-legal h3 {
    color: #F4F4F9;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav ul li, .footer-legal ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a, .footer-legal ul li a {
    color: #F4F4F9;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-nav ul li a:hover, .footer-legal ul li a:hover {
    opacity: 1;
    color: #FFB400;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(28, 37, 65, 0.95);
    color: #F4F4F9;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.footer-contact a{
    color: #FFB400;
}
.cookie-content h3 {
    margin-bottom: 10px;
    color: #F4F4F9;
}

.cookie-content p {
    margin-right: 20px;
    margin-bottom: 10px;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: #FFB400;
    text-decoration: underline;
}

.cookie-content button {
    flex-shrink: 0;
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 40px;
}

.policy-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1C2541;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-page {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
}

.thank-you-container h1 {
    margin-bottom: 20px;
    color: #1C2541;
}

.thank-you-container p {
    margin-bottom: 30px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Burger Menu for Mobile */
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: rgba(28, 37, 65, 0.98);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .burger-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .burger-toggle:checked ~ .burger-btn span:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
    }
    
    .burger-toggle:checked ~ .burger-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-toggle:checked ~ .burger-btn span:nth-child(3) {
        transform: rotate(-45deg);
        top: 8px;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    /* Cookie Popup */
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content button {
        margin-top: 20px;
    }
    
    /* Section Padding */
    section {
        padding: 50px 0;
    }
    
    /* Policy Pages */
    .policy-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
} 