/* 
* Main Stylesheet
* Color palette:
* - Background: #FAFAF1 (light sandy)
* - Primary: #2B5F82 (deep sea blue)
* - Accent: #F54F29 (orange-red)
* - Secondary: #F3B61F (honey yellow)
* - Font: 'Poppins', sans-serif
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FAFAF1;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2B5F82;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #F54F29;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2B5F82;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #F54F29;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #F54F29;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #e63e1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 79, 41, 0.2);
}

.btn-secondary {
    background-color: #2B5F82;
}

.btn-secondary:hover {
    background-color: #1d4e6f;
    box-shadow: 0 4px 12px rgba(43, 95, 130, 0.3);
}

/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B5F82;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    position: relative;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F54F29;
    transition: width 0.3s ease;
}

.nav-list a:hover:after {
    width: 100%;
}

.contact-btn {
    background-color: #F54F29;
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.contact-btn:hover {
    background-color: #e63e1a;
    transform: translateY(-2px);
}

.contact-btn:hover:after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #2B5F82;
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/BZU0Ub.jpg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f0f0e6;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #2B5F82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #F3B61F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #f0f0e6;
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 19px;
    width: 2px;
    height: 100%;
    background-color: #2B5F82;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #2B5F82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #F3B61F;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-position {
    font-size: 0.85rem;
    color: #777;
}

/* Contact Form Section */
.contact {
    padding: 80px 0;
    background-color: #f0f0e6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    background-color: #2B5F82;
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.contact-info h2 {
    color: white;
    text-align: center;
}

.contact-info h2:after {
    background-color: #F3B61F;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px 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;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #2B5F82;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 6px;
}

.checkbox-group label {
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f9f9f5;
}

.faq-answer-inner {
    padding: 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
.main-footer {
    background-color: #2B5F82;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo {
    filter: brightness(0) invert(1);
    margin-right: 10px;
}

.footer-logo .site-name {
    color: white;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact h3,
.footer-links h3 {
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact h3:after,
.footer-links h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #F3B61F;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-list,
.legal-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-list li,
.legal-links li {
    margin-bottom: 10px;
}

.contact-list a,
.legal-links a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-list a:hover,
.legal-links a:hover {
    opacity: 1;
    color: #F3B61F;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

#acceptCookies {
    background-color: #F54F29;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#acceptCookies:hover {
    background-color: #e63e1a;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 40px;
}

.policy-content h2 {
    margin-top: 40px;
    text-align: left;
}

.policy-content h2:after {
    left: 0;
    transform: none;
}

.policy-content ul,
.policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 160px 0 100px;
}

.success-message,
.error-message {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: #F3B61F;
    margin-bottom: 30px;
}

.thank-you h1 {
    margin-bottom: 20px;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        transition: all 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .main-nav.mobile-menu-open {
        left: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-list li {
        margin: 0 0 15px;
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .contact-btn {
        display: inline-block;
        margin-top: 10px;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .menu-close {
        font-size: 1.8rem;
        color: #F54F29;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .policy-content {
        padding: 100px 15px 60px;
    }
} 