/* Global Styles */
:root {
    --dark-bg: #222222; /* Dark background color for main sections */
    --gold: #CEA64F;
    --dark-gray: #333333;
    --teal: #008080; /* Teal color for alternative links */
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --white: #FFFFFF;
    --black: #1A1A1A; /* Slightly lighter black for footer */
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-gray);
}
a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}
.suggested-word {
    display: none;
}

/* Header/Hero Section */
.hero-section {
    /* background-image: url('https://images.unsplash.com/photo-1516455590571-18256e5bb9ff?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80'); */
    background-image: url('images/IMG_0440.jpeg');
    background-size: cover;
    background-position: center;
    background-color: var(--dark-bg);
    height: 100vh;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    position: relative;
    z-index: 2;
}

.logo {
    height: 100px;
    margin-bottom: 2rem;
    opacity: 1;
    filter: none;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
}

.scroll-down {
    color: var(--gold);
    font-size: 1.5rem;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    transform: translateY(5px);
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 400;
}

.about-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.features p {
    color: var(--white);
    font-size: 1rem;
}

.cabinet-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Steps Section */
.steps-section {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0;
}

.steps-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 400;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-container p {
    color: var(--white);
    font-size: 1.1rem;
}

/* Second Hero Section */
.second-hero-section {
    background-image: url('images/IMG_0439.jpeg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: var(--white);
}

.second-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.6);
}

.second-hero-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.second-hero-section h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--white);
}

/* Partners Section */
.partners-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0;
}

.partners-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 400;
}

.partners-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Accordion Styling */
.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background-color: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CEA64F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--white);
    padding: 0.5rem 0 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 5rem 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-style: italic;
    color: var(--gold);
    margin-top: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 400;
}

.contact-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.contact-info h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.3rem;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
    opacity: 1;
    filter: none;
}

.copyright-row {
    padding: 0.5rem 0;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.75rem 0;
    border-top-width: 1px;
    opacity: 1;
}

.footer-bottom {
    padding: 0.75rem 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:last-child {
    margin-right: 0;
}

.footer-nav a:hover {
    color: var(--gold);
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-left: 0.75rem;
    transition: color 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:first-child {
    margin-left: 0;
}

.social-icons a:hover {
    color: var(--white);
    border-color: var(--gold);
    background-color: rgba(206, 166, 79, 0.1);
}

/* Add subtle grid pattern to footer */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .second-hero-section h2 {
        font-size: 2.3rem;
    }
    
    .about-section h2,
    .steps-section h2,
    .partners-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .second-hero-section {
        height: 400px;
    }
    
    .second-hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    .second-hero-section h2 {
        font-size: 2rem;
    }
    
    .about-section h2,
    .steps-section h2,
    .partners-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-person {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin-top: 1rem;
        margin-left: 0 !important;
    }
    
    /* Footer responsive */
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-nav {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .social-icons {
        text-align: center;
    }
}
