:root {
    --brand-dark-blue: #1a237e;
    --brand-green: #2e7d32;
    --brand-gold: #fbbe48;
    --light-gray: #f8f9fa; 
    --dark-gray: #212121;
    --black: #000000;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white); 
    color: var(--dark-gray);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

/* --- SECTION STYLING: Bold, High-Contrast Strategy --- */
h2 {
    color: var(--brand-dark-blue);
}

#about, #order-quote, #services {
    background-color: var(--white);
}
#services {
     background-color: var(--light-gray);
}

#home, #why-choose-us, #faq, footer {
    background-color: var(--brand-dark-blue);
}

/* White text for colored backgrounds */
#home h1, #home p,
#why-choose-us h2, #why-choose-us h3, #why-choose-us p,
#faq h2, #faq p,
footer h4, footer p, footer a, footer button {
    color: var(--white);
}

/* --- CARD & INTERACTION STYLLES --- */
.card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#why-choose-us .card {
    background-color: #2c3a9e; /* Slightly lighter blue for depth */
}

/* --- Icons and Animations --- */
.feature-icon {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-card:nth-child(1) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.6s; }


.form-input {
    background-color: var(--white);
    border-color: #e2e8f0;
    color: var(--black);
}
.form-input:focus {
    --tw-ring-color: var(--brand-green);
    border-color: var(--brand-green);
}

/* --- BUTTON STYLES --- */
.btn {
    border: none;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
    font-size: 1.1rem;
    padding: 0.9rem 2.6rem;
    border-radius: 0.5rem;
    font-weight: 600;
}
.btn-green {
    background-color: var(--brand-green);
    color: white;
}
.btn-green:hover {
    background-color: #246327;
    transform: translateY(-2px);
}

/* --- FINAL FAQ STYLES: High Contrast & Smooth Animation --- */
.faq-item {
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #2c3a9e;
    transition: background-color 0.3s;
}
.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}
.faq-answer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    border-top: 2px solid var(--brand-gold);
    margin: 0 1.5rem; /* Animate margin */
    padding: 0 0; /* Animate padding */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, margin 0.5s ease-in-out;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
    padding: 1.5rem 0;
}


/* --- FOOTER STYLES --- */
footer .hover-gold:hover {
    color: var(--brand-gold);
    transition: color 0.3s;
}
footer .border-t {
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- UTILITIES & NAVIGATION --- */
#back-to-top {
    background-color: var(--brand-green);
}
#back-to-top:hover {
     background-color: #246327;
}

.nav-link {
    color: var(--black);
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--brand-green);
}

.site-icon {
    width: 40px;
    height: 40px;
}

/* --- MODAL & MISC --- */
#privacy-modal .rounded-lg {
    background-color: var(--light-gray);
    border-color: #e2e8f0;
}
#privacy-modal a {
    color: var(--brand-green);
}
#order-quote .card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
}

#mobile-menu {
    background-color: var(--white);
}
#mobile-menu a:hover {
    background-color: var(--light-gray);
}

header {
    background-color: var(--white);
}

/* Tailwind Base and Components */
@tailwind base;
@tailwind components;
@tailwind utilities;

