@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #111111; /* Black */
    --secondary-color: #666666; /* Gray */
    --accent-color: #f4f4f4; /* Light Gray */
    --bg-color: #ffffff; /* White */
    --bg-alt: #fafafa;
    --text-color: #1a1a1a;
    --text-muted: #757575;
    --border-color: #e5e5e5;
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.2s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700; color: var(--text-color); margin-bottom: 20px; letter-spacing: -0.02em;
}

p { margin-bottom: 15px; color: var(--text-muted); font-weight: 400; }
a { text-decoration: none; color: var(--text-color); transition: var(--transition); }
a:hover { color: var(--secondary-color); }

/* Utilities */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.section-title { font-size: 2.2rem; margin-bottom: 50px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.section-title::after { content:''; display:block; width:40px; height:2px; background:var(--primary-color); margin: 20px auto 0; }

/* Buttons */
.btn {
    display: inline-block; padding: 14px 35px; background-color: var(--bg-color);
    color: var(--primary-color); border: 1px solid var(--primary-color);
    font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; cursor: pointer; transition: var(--transition);
}
.btn:hover { background-color: var(--primary-color); color: var(--bg-color); }
.btn-primary { background-color: var(--primary-color); color: var(--bg-color); }
.btn-primary:hover { background-color: var(--bg-color); color: var(--primary-color); }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.98);
    padding: 20px 0; z-index: 1000; border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container img { height: 40px; }
.nav-links { list-style: none; display: flex; gap: 40px; align-items: center; }
.nav-links li a {font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links li a:hover, .nav-links li a.active { color: var(--secondary-color); text-decoration: underline; text-underline-offset: 5px; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* Hero Section */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: flex-start;
    padding-top: 80px; position:relative; overflow:hidden;
    background-size: cover; background-position: center;
}
.hero::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.65); z-index:1; }
.hero-content {
    position: relative; z-index: 2; max-width: 600px;
}
.hero-title { font-size: 4.5rem; line-height: 1; margin-bottom: 20px; letter-spacing: -0.04em; color: #ffffff; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 40px; color: #dddddd; font-weight: 300; }

/* Dashboard / Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background:var(--border-color); border: 1px solid var(--border-color); }
.service-card {
    background: var(--bg-color); padding: 50px 30px; text-align: center;
    transition: var(--transition);
}
.service-card:hover { background: var(--bg-alt); }
.service-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; }

/* About Section */
.about-content { display: flex; align-items: stretch; gap: 0; border: 1px solid var(--border-color); }
.about-text { flex: 1; padding: 60px; background: var(--bg-alt); display: flex; flex-direction: column; justify-content: center; }
.about-image { flex: 1; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2.section-title::after { margin-left: 0; }
.about-text h2.section-title { text-align: left; }

.features-list { list-style: none; margin-top: 30px; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.features-list li i { color: var(--primary-color); font-size: 1.2rem; }

/* Testimonials */
.testimonials { background-color: var(--primary-color); color: var(--bg-color); text-align: center; }
.testimonials .section-title { color: var(--bg-color); }
.testimonials .section-title::after { background: var(--bg-color); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.testimonial-card { padding: 20px; }
.testimonial-text { font-size: 1.2rem; font-weight: 300; line-height: 1.8; margin-bottom: 25px; color: #dddddd; }
.testimonial-author { font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; color: var(--bg-color); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; height: 350px; overflow: hidden; background: var(--accent-color); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: var(--transition); }
.gallery-item:hover img { filter: grayscale(0%); transform: scale(1.03); }

/* Pricing */
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.pricing-card {
    background: var(--bg-color); padding: 50px 40px; text-align: center;
    border: 1px solid var(--border-color); width: 100%; max-width: 350px;
    transition: var(--transition);
}
.pricing-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.pricing-card h3 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { font-size: 3.5rem; font-weight: 300; color: var(--primary-color); margin: 20px 0; }
.pricing-list { list-style: none; margin-bottom: 40px; }
.pricing-list li { padding: 15px 0; border-top: 1px solid var(--border-color); font-size: 0.95rem; color: var(--text-muted); }

/* Forms */
.form-container { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.form-control {
    width: 100%; padding: 15px; background: transparent; border: none; border-bottom: 1px solid var(--border-color);
    color: var(--text-color); font-family: var(--font-primary); transition: var(--transition); font-size: 1rem;
}
.form-control:focus { outline: none; border-bottom-color: var(--primary-color); }
textarea.form-control { resize: vertical; height: 120px; }

/* Page Header */
.page-header { padding: 180px 0 80px; text-align: center; background: var(--bg-alt); border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 3rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.page-header p { font-size: 1.1rem; color: var(--secondary-color); font-weight: 300; }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--border-color); }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-q { padding: 30px 0; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; font-size: 1.1rem; }
.faq-a { padding: 0 0 30px 0; display: none; color: var(--text-muted); }
.faq-item.active .faq-a { display: block; }
.faq-item.active .faq-q { color: var(--text-muted); }

/* Floating Buttons */
.floating-whatsapp {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366;
    color: white; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: var(--transition);
}
.floating-whatsapp:hover { background-color: #128C7E; color: white; }

.floating-call {
    position: fixed; bottom: 100px; right: 30px; background-color: var(--primary-color);
    color: white; width: 50px; height: 50px; border-radius: 50%;
    display: none; align-items: center; justify-content: center; font-size: 20px;
    z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary-color); }

.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--primary-color); font-size: 1.2rem; }
.social-links a:hover { color: var(--secondary-color); }

.footer-bottom { text-align: center; padding-top: 30px; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-bg { display: none; }
    .hero-content { background: transparent; padding: 0; max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; flex-direction: column; width: 100%; position: absolute;
        top: 100%; left: 0; background: var(--bg-color); padding: 30px 0;
        border-bottom: 1px solid var(--border-color); text-align: center;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 3rem; }
    .about-content { flex-direction: column; }
    .floating-call { display: flex; }
}


/* Force Logo Sizes */
.logo { max-height: 40px !important; width: auto !important; object-fit: contain !important; }
.logo-container img { max-height: 40px !important; height: auto !important; }

