/* styles.css (Final Corrected Version) */
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Oswald:wght@400;700&display=swap');

:root {
    --font-body: 'Didact Gothic', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --color-primary-bg: #272727;
    --color-secondary-bg: #3b3c3c;
    --color-card-bg: #444340;
    --color-white: #ffffff;
    --color-gold: #C8860D;
    --color-text-primary: #d1d5db;
    --color-text-secondary: #9ca3af;
    --color-border: #4b5563;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--color-text-primary); background-color: var(--color-primary-bg); line-height: 1.7; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
a { text-decoration: none; color: var(--color-gold); }
a:hover { color: var(--color-text-primary); }
ul { list-style: none; padding: 0; }

/* Header */
.header { background: rgba(39, 39, 39, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); padding: 1.5rem 2rem; position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo-section .logo { height: 90px; width: auto; }

/* Navigation (Mobile First) */
.nav-desktop { display: none; }
.mobile-menu-button { display: flex; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 0.5rem; }
.mobile-menu-button span { display: block; width: 25px; height: 3px; background-color: var(--color-white); }
.mobile-menu { display: none; position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background-color: #1c1c1c; padding: 2rem; transition: right 0.3s ease; z-index: 1002; }
.mobile-menu.active { right: 0; display: block; }
.mobile-menu .close-btn { color: white; background: none; border: none; font-size: 2rem; position: absolute; top: 1rem; right: 1.5rem; cursor: pointer; }
.mobile-nav a { display: block; color: white; margin-bottom: 1.5rem; font-size: 1.2rem; }
.mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1001; }
.mobile-menu-overlay.active { display: block; }

/* Hero Section */
.hero-section { background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('../images/WhatsApp Image 2025-05-27 at 11.34.29 (11).jpeg') center/cover no-repeat; padding: 6rem 1rem; color: var(--color-white); text-align: center; }
.hero-section h1 { font-size: 3rem; color: var(--color-white); }
.hero-section p { margin: 1rem 0 2rem; font-size: 1.2rem; }
.text-gold { color: var(--color-gold); }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.btn { padding: 0.75rem 1.5rem; border-radius: 5px; font-weight: 700; transition: all 0.3s ease; display: inline-block; }
.btn-gold { background-color: var(--color-gold); color: var(--color-white); }
.btn-gold:hover { background-color: #b3760b; }
.btn-outline { border: 2px solid var(--color-white); color: var(--color-white); }
.btn-outline:hover { background-color: var(--color-white); color: var(--color-primary-bg); }

/* General Sections & Layouts */
.section { padding: 4rem 1rem; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; color: var(--color-text-secondary); }
.bg-secondary { background-color: var(--color-secondary-bg); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 2rem; grid-template-columns: 1fr; }

/* Cards & Items */
.card { background: var(--color-card-bg); padding: 2rem; border-radius: 5px; border: 1px solid var(--color-border); display: flex; flex-direction: column; }
.card h3 { margin-bottom: 1rem; color: var(--color-gold); }
.card p { flex-grow: 1; }
.card .text-gold { margin-top: 1rem; font-weight: bold; }
.project-item { position: relative; overflow: hidden; border-radius: 5px; background-color: var(--color-card-bg); }
.project-item img { display: block; width: 100%; height: 250px; object-fit: cover; }
.project-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; padding: 1.5rem; }
.project-overlay h4, .project-overlay p { margin: 0; }
.project-overlay h4 { color: var(--color-white); }
.project-overlay p { color: var(--color-gold); }
.blog-post img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 1.5rem; }
.service-entry, .why-choose-us, .about-story { display: flex; flex-direction: column; gap: 2rem; align-items: center; background-color: var(--color-card-bg); padding: 2rem; border-radius: 5px; margin-bottom: 3rem; }
.service-image, .why-choose-us-image, .about-image { flex-basis: 45%; flex-shrink: 0; width: 100%; }
.service-image img, .why-choose-us-image img, .about-image img { width: 100%; height: 100%; max-height: 400px; object-fit: cover; border-radius: 5px; }
.service-text, .why-choose-us-text, .about-text { flex-basis: 50%; }
.service-text h3, .why-choose-us-text h2, .about-text h2 { color: var(--color-gold); font-size: 1.8rem; margin-bottom: 1rem; }
.why-choose-us-text ul li { margin-bottom: 0.5rem; }
.process-section { text-align: center; }
.process-step { background-color: var(--color-card-bg); padding: 2rem; border-radius: 5px; }
.process-step .icon { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 1rem; }
.process-step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.why-choose-us-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.feature-item { text-align: center; }
.feature-item .icon { font-size: 3rem; color: var(--color-gold); margin-bottom: 1rem; }
.feature-item h3 { margin-bottom: 0.5rem; }
.cta-banner { background: var(--color-secondary-bg); padding: 4rem 1rem; text-align: center; }
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.cta-banner .btn { font-size: 1.1rem; padding: 1rem 2rem; }

/* Contact Page */
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
.contact-info ul { list-style: none; padding: 0; }
.contact-info li { margin-bottom: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem; margin-bottom: 1rem; border: 1px solid var(--color-border); border-radius: 5px; font-family: var(--font-body); background-color: var(--color-secondary-bg); color: var(--color-text-primary); }

/* Footer */
.footer { background-color: #0d1b2a; color: var(--color-text-primary); padding: 4rem 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-about .footer-logo { height: 70px; margin-bottom: 1rem; }
.footer-about p { color: var(--color-text-secondary); margin-bottom: 1rem; }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { font-size: 1.5rem; }
.footer h4 { color: var(--color-white); font-family: var(--font-oswald); margin-bottom: 1rem; position: relative; padding-bottom: 0.5rem; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background-color: var(--color-gold); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul a, .footer-contact-info p { color: var(--color-text-secondary); }
.footer-contact-info p { line-height: 1.8; }
.footer-bottom { text-align: center; border-top: 1px solid var(--color-border); padding-top: 2rem; margin-top: 3rem; }
.footer-bottom p { color: var(--color-text-secondary); }

/* Fixed Action Buttons */
.fixed-action-buttons { position: fixed; bottom: 20px; right: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
.action-btn { color: var(--color-white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: all 0.3s ease; }
.action-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background-color: #25D366; }
.whatsapp-btn:hover { background-color: #1DA851; }
.scroll-top-btn { background-color: var(--color-gold); }
.scroll-top-btn:hover { background-color: #e69d0f; }
#scrollToTopBtn { opacity: 0; visibility: hidden; transform: translateY(10px); }
#scrollToTopBtn.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Scrolling & Hover Effects */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.card, .project-item, .service-entry, .process-step, .feature-item, .about-story, .contact-grid { transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.card:hover, .project-item:hover, .service-entry:hover, .process-step:hover, .feature-item:hover, .about-story:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

/* --- Responsive Styles --- */
@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .nav-desktop a { margin-left: 2rem; font-weight: 700; font-size: 1rem; }
    .mobile-menu-button { display: none; }
    .grid-2, .why-choose-us-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .about-story { flex-direction: row; }
    .contact-grid { grid-template-columns: 1fr 1.5fr; }
    .service-entry { flex-direction: row; }
    .service-entry:nth-child(even) { flex-direction: row-reverse; }
}
@media (min-width: 1024px) {
    .hero-section h1 { font-size: 4.5rem; }
}