/* TAAJ LAWN CARE - COMPLETE STYLES WITH HAMBURGER MENU */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* Header */
header { background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%); color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
nav { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }

/* Logo */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo { height: 50px; width: auto; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }

/* Navigation */
.nav-menu { list-style: none; display: flex; gap: 2rem; align-items: center; margin: 0; padding: 0; }
.nav-menu li { margin: 0; }
.nav-menu a { color: white; text-decoration: none; transition: all 0.3s ease; font-weight: 500; padding: 0.5rem 0; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #a8d08d; transition: width 0.3s ease; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: #a8d08d; }
.contact-btn { background: #ff6b35; padding: 0.7rem 1.5rem !important; border-radius: 50px; }
.contact-btn:hover { background: #ff8554; transform: translateY(-2px); }
.contact-btn::after { display: none; }

/* Hamburger Menu */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1002; padding: 10px; }
.mobile-menu-toggle span { width: 28px; height: 3px; background: white; transition: all 0.3s ease; border-radius: 3px; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* Hero */
.hero { background: linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(74, 124, 44, 0.85)); color: white; padding: 180px 2rem 100px; text-align: center; margin-top: 70px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.4rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Buttons */
.cta-button { display: inline-block; background: linear-gradient(135deg, #ff6b35, #ff8554); color: white; padding: 1rem 2.5rem; text-decoration: none; border-radius: 50px; font-size: 1.2rem; font-weight: bold; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
.cta-button:hover { background: linear-gradient(135deg, #ff8554, #ff6b35); transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6); }
.cta-button-outline { display: inline-block; background: transparent; color: #ff6b35; border: 2px solid #ff6b35; padding: 1rem 2.5rem; text-decoration: none; border-radius: 50px; font-size: 1.2rem; font-weight: bold; transition: all 0.3s; }
.cta-button-outline:hover { background: #ff6b35; color: white; transform: translateY(-3px); }
.cta-button-white { display: inline-block; background: white; color: #ff6b35; padding: 1rem 2.5rem; text-decoration: none; border-radius: 50px; font-size: 1.2rem; font-weight: bold; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }

/* Intro Banner */
.intro-banner { background: linear-gradient(135deg, #ff6b35, #f7931e); color: white; padding: 2rem; text-align: center; }
.intro-banner h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.intro-banner .price { font-size: 3rem; font-weight: bold; margin: 1rem 0; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
section { margin-bottom: 4rem; }
h2 { font-size: 2.5rem; color: #2d5016; margin-bottom: 1.5rem; text-align: center; }

/* Service Areas */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.city-card { background: linear-gradient(135deg, #4a7c2c, #5d9436); color: white; padding: 1.5rem; border-radius: 10px; font-weight: 600; text-align: center; transition: all 0.3s; }
.city-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.service-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: all 0.3s; border-top: 4px solid #4a7c2c; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Footer */
footer { background: linear-gradient(135deg, #2d5016, #1a3010); color: white; padding: 3rem 2rem 1rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { color: white; margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section a { color: #a8d08d; text-decoration: none; }
.footer-section a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }

/* RESPONSIVE - HAMBURGER MENU */
@media (max-width: 1024px) {
    .mobile-menu-toggle { display: flex; }
    .nav-menu { position: fixed; top: 0; right: -100%; width: 320px; max-width: 80%; height: 100vh; background: linear-gradient(135deg, #2d5016, #4a7c2c); flex-direction: column; align-items: flex-start; padding: 80px 30px 30px 30px; gap: 0; transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); box-shadow: -5px 0 20px rgba(0,0,0,0.3); overflow-y: auto; z-index: 1001; }
    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu li a { display: block; width: 100%; padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-menu li a:hover { background: rgba(255, 255, 255, 0.1); padding-left: 30px; }
    .contact-btn { border-radius: 8px; margin-top: 10px; text-align: center; }
    body.menu-open { overflow: hidden; }
}

@media (max-width: 768px) {
    .hero { padding: 150px 1.5rem 80px; }
    .hero h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .nav-menu { width: 280px; }
    .container { padding: 2rem 1rem; }
}
