/* --- 1. CORE STYLES --- */
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Source Sans 3', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER --- */
.main-header { padding: 10px 0; border-bottom: 1px solid #eee; background: #fff; }
.header-grid { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 80px; width: auto; transition: opacity 0.3s; }
.logo-link:hover { opacity: 0.8; }
.nav-group { text-align: right; }
.nav-links { list-style: none; display: flex; gap: 20px; margin: 0 0 5px 0; padding: 0; justify-content: flex-end; }
.nav-links a { text-decoration: none; color: #000; font-size: 14px; font-weight: 600; }

/* Dropdown Styles */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 220px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); z-index: 100; text-align: left; border: 1px solid #eee; top: 100%; right: 0; border-radius: 4px; overflow: hidden; }
.dropdown-content a { color: #333 !important; padding: 12px 16px; text-decoration: none; display: block; font-size: 14px; font-weight: 400 !important; border-bottom: 1px solid #f9f9f9; transition: background 0.2s; text-align: left; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #f1f1f1; color: #007bff !important; }
.dropdown:hover .dropdown-content { display: block; }
.dropbtn::after { content: ' \25BE'; font-size: 10px; vertical-align: middle; opacity: 0.6; }
.header-contact { font-size: 13px; }
.phone-link { color: #007bff; text-decoration: underline; font-weight: bold; margin-right: 5px; }
.contact-label { color: #666; }

/* --- 3. FINAL FOOTER --- */
.main-footer { background-color: #f9f9f9; padding: 80px 0 0 0; border-top: 1px solid #eee; color: #555; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
.footer-col h4 { color: #111; font-family: 'Outfit', sans-serif; margin-bottom: 25px; font-size: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { text-decoration: none; color: #555; }
.footer-socials a { margin-right: 15px; color: #007bff; font-weight: bold; text-decoration: none; }
.footer-bottom { background-color: #fff; border-top: 1px solid #eee; padding: 25px 0; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.legal-links a { margin-left: 20px; text-decoration: none; color: #999; }

/* --- 4. RESPONSIVE DESIGN FOR HEADER/FOOTER --- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
@media (max-width: 768px) {
    .header-grid, .footer-bottom-flex { flex-direction: column; text-align: center; }
    .nav-links { justify-content: center; flex-wrap: wrap; }
}

/* --- HERO SECTION --- */
.hero { 
    height: 600px; 
    background-image: url('../index_images/index1.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}
.hero-overlay { 
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.hero-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 50px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}
.hero-title { 
    font-family: 'Outfit', sans-serif; 
    font-size: 56px; 
    color: #007bff; 
    margin: 0 0 15px 0; 
}
.hero-actions { 
    display: flex; 
    gap: 30px; 
    justify-content: center; 
}
.btn-hero-link { 
    color: #007bff; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 20px;
    border-bottom: 2px solid transparent;
    transition: border 0.3s;
}
.btn-hero-link:hover {
    border-bottom: 2px solid #007bff;
}

/* --- WELCOME & ABOUT --- */
.welcome-section { padding: 80px 0; text-align: center; }
.welcome-section h2 { font-family: 'Outfit', sans-serif; font-size: 32px; margin-bottom: 20px; }
.welcome-section p { color: #666; max-width: 800px; margin: 0 auto; font-size: 18px; }

.about-section { padding: 100px 0; background-color: #fff; }
.about-grid { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; text-align: left; }
.sub-label { color: #007bff; font-size: 14px; font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 10px; }
.about-text h2 { font-family: 'Outfit', sans-serif; font-size: 38px; margin: 0 0 25px 0; color: #111; }
.about-text p { font-size: 16px; color: #555; margin-bottom: 20px; line-height: 1.8; }
.about-graphic { flex: 1; text-align: center; }
.about-graphic img { max-width: 100%; height: auto; transform: scale(1.1); }

/* --- TESTIMONIALS --- */
.testimonials { background-color: #007bff; color: white; padding: 80px 0; text-align: center; }
.section-title { font-family: 'Outfit', sans-serif; font-size: 36px; margin: 0; }
.section-subtitle { font-size: 14px; margin-bottom: 50px; opacity: 0.9; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { border: 1px solid rgba(255, 255, 255, 0.3); padding: 30px; text-align: left; }
.client-name { font-weight: bold; margin-bottom: 5px; display: block; }
.stars { color: #ffcc00; font-size: 18px; }

/* --- QUOTE & CTA BANNERS --- */
.quote-banner { height: 500px; background-size: cover; background-position: center; background-attachment: fixed; position: relative; color: white; display: flex; flex-direction: column; justify-content: space-between; padding: 60px 0; }
.quote-banner::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); z-index: 1; }
.quote-container { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.quote-top { text-align: center; }
.quote-top h2 { font-family: 'Source Sans 3', sans-serif; font-style: italic; font-weight: 400; font-size: 28px; max-width: 600px; margin: 0 auto; }
.quote-bottom { text-align: right; align-self: flex-end; }
.quote-bottom p { font-family: 'Source Sans 3', sans-serif; font-size: 32px; line-height: 1.2; margin: 0; }

.menu-cta { padding: 100px 0; background-size: cover; background-position: center; position: relative; color: white; text-align: center; }
.menu-cta::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1; }
.menu-cta-content { position: relative; z-index: 2; }
.cta-sub { font-size: 14px; display: block; margin-bottom: 10px; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: 48px; color: #007bff; margin: 0 0 20px 0; }
.cta-text { font-size: 16px; margin-bottom: 10px; max-width: 800px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }
.btn-filled { background-color: #007bff; color: white; padding: 12px 30px; text-decoration: none; font-weight: bold; border-radius: 2px; }
.btn-outline-white { background-color: #fff; color: #007bff; padding: 12px 30px; text-decoration: none; font-weight: bold; border: 1px solid #fff; border-radius: 2px; }

/* --- RESPONSIVE DESIGN (INDEX SPECIFIC) --- */
@media (max-width: 900px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .about-grid { flex-direction: column; text-align: center; }
    .cta-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-title, .cta-title { font-size: 32px; }
    .quote-top h2, .quote-bottom p { font-size: 22px; }
    .quote-bottom { text-align: center; align-self: center; }
}


