:root {
    --primary-color: #FFB800; /* Modern Yellow */
    --secondary-color: #0F172A; /* Slate Navy */
    --text-dark: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { color: var(--text-dark); line-height: 1.7; background-color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; text-align: center; }
.btn-primary { background-color: var(--primary-color); color: var(--secondary-color); border: 2px solid var(--primary-color); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 184, 0, 0.3); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* Navbar */
.navbar { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 15px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #E2E8F0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--secondary-color); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 15px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-color); }

/* Mobile Menu Hidden */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.menu-toggle .bar { height: 3px; width: 24px; background-color: var(--secondary-color); border-radius: 3px; }
.btn-mobile-only { display: none; }

/* Hero Section */
.hero { padding: 80px 0; background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%); }
.hero-container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.badge { display: inline-block; padding: 8px 16px; background: rgba(255, 184, 0, 0.15); color: #B48200; border-radius: 50px; font-weight: 700; font-size: 14px; margin-bottom: 24px; }
.hero-content h1 { font-size: 52px; line-height: 1.1; margin-bottom: 24px; color: var(--secondary-color); font-weight: 800; letter-spacing: -1px; }
.hero-content .highlight { color: var(--primary-color); }
.hero-content p { font-size: 18px; margin-bottom: 32px; color: var(--text-light); }
.hero-buttons { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.guarantee { font-size: 14px; font-weight: 600; color: #10B981; }
.hero-image { flex: 1; position: relative; }
.image-wrapper { position: relative; z-index: 2; }
.image-wrapper img { width: 100%; border-radius: 24px; box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1); object-fit: cover; aspect-ratio: 4/3; }

/* Services Section */
.services { padding: 100px 0; background-color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; max-width: 600px; margin-inline: auto; }
.section-header h2 { font-size: 36px; color: var(--secondary-color); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-header p { color: var(--text-light); font-size: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.modern-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #F1F5F9; transition: all 0.4s ease; }
.modern-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 30px; }
.card-content h3 { font-size: 20px; color: var(--secondary-color); margin-bottom: 12px; font-weight: 700; }
.card-content p { color: var(--text-light); font-size: 15px; }

/* Other Services (Pills) */
.other-services { padding: 80px 0; background-color: var(--secondary-color); color: var(--white); }
.flex-layout { display: flex; align-items: center; gap: 50px; }
.text-area { flex: 1; }
.text-area h2 { font-size: 32px; margin-bottom: 16px; font-weight: 800; }
.text-area p { color: #CBD5E1; }
.pills-area { flex: 1; display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 12px 20px; border-radius: 50px; font-size: 15px; font-weight: 500; transition: all 0.3s ease; cursor: default; }
.pill:hover { background: var(--primary-color); color: var(--secondary-color); border-color: var(--primary-color); }

/* Gallery */
.gallery { padding: 100px 0; background-color: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gal-img { width: 100%; height: 250px; object-fit: cover; border-radius: 16px; transition: transform 0.3s ease; }
.gal-img:hover { transform: scale(1.03); }

/* Bottom CTA */
.bottom-cta { padding: 80px 0; text-align: center; background-color: var(--white); }
.cta-container { max-width: 800px; background: var(--bg-light); padding: 60px 40px; border-radius: 32px; }
.cta-container h2 { font-size: 32px; font-weight: 800; color: var(--secondary-color); margin-bottom: 20px; }
.cta-container p { color: var(--text-light); margin-bottom: 30px; font-size: 18px; }
.pulse-effect { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(255, 184, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); } }

/* Footer */
.footer { background-color: var(--secondary-color); color: var(--white); padding: 60px 0 30px; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-info h3 { color: var(--primary-color); font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.footer-info p { color: #94A3B8; max-width: 300px; }
.footer-contact p { color: #94A3B8; margin-bottom: 10px; font-weight: 600; }
.footer-bottom { text-align: center; padding-top: 30px; color: #64748B; font-size: 14px; }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .btn-desktop-only { display: none; }
    .btn-mobile-only { display: block; text-align: center; width: 100%; margin-top: 15px; }
    
    .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 70px; left: 0; background: var(--white); padding: 24px; box-shadow: 0 10px 15px rgba(0,0,0,0.05); gap: 20px; align-items: flex-start; }
    .nav-links.active { display: flex; }
    
    .hero { padding: 40px 0; text-align: center; }
    .hero-container { flex-direction: column; gap: 40px; }
    .hero-content h1 { font-size: 36px; }
    .hero-buttons { align-items: center; width: 100%; }
    
    .flex-layout { flex-direction: column; gap: 30px; }
    .cta-container { padding: 40px 20px; }
}