/* ============================================
   H Y T REMODELING LLC - Main Stylesheet
   Dark Theme | Professional IT Services
   ============================================ */

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

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --secondary: #14b8a6;
  --accent: #34d399;
  --bg-dark: #0a0a1a;
  --bg-card: #111128;
  --bg-card-hover: #1a1a3e;
  --bg-nav: #0d0d24;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --gradient-main: linear-gradient(135deg, #10b981, #14b8a6);
  --gradient-accent: linear-gradient(135deg, #34d399, #10b981);
  --shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
  --shadow-lg: 0 8px 40px rgba(16, 185, 129, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-dark); color: var(--text-primary);
  line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--accent); }
::selection { background: rgba(16, 185, 129, 0.3); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 13, 36, 0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.5); padding: 0 2rem;
}
nav .nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
nav .logo { font-size: 1.4rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; }
nav .nav-links { display: flex; list-style: none; gap: 0.25rem; }
nav .nav-links a { color: var(--text-secondary); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
nav .nav-links a:hover, nav .nav-links a.active { color: var(--text-primary); background: rgba(16, 185, 129, 0.1); }
nav .nav-links a.active { color: var(--primary); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-dark); position: relative; overflow: hidden; padding: 7rem 2rem 5rem;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 40%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(20, 184, 166, 0.06) 0%, transparent 60%);
  pointer-events: none; animation: heroGlow 15s ease-in-out infinite alternate;
}
@keyframes heroGlow { 0% { transform: translate(0, 0); } 50% { transform: translate(-2%, -2%); } 100% { transform: translate(2%, 2%); } }
.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); border-radius: 50px; font-size: 0.8rem; color: var(--primary); margin-bottom: 1.5rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
.hero h1 .highlight { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; text-decoration: none; }
.btn-primary { background: var(--gradient-main); color: #fff; box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4); color: #fff; }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; padding: 0.35rem 1rem; background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15); border-radius: 50px; font-size: 0.8rem; color: var(--primary); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.5px; }
.section h2 .highlight { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section > .section-inner > p, .section-subtitle { color: var(--text-secondary); max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

.services { background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-main); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { border-color: rgba(16, 185, 129, 0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: rgba(16, 185, 129, 0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; font-weight: 600; }
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h3 { font-size: 1.8rem; margin-bottom: 1.5rem; font-weight: 700; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: var(--transition); }
.stat-card:hover { border-color: rgba(16, 185, 129, 0.2); transform: translateY(-2px); }
.stat-number { font-size: 2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--text-secondary); font-size: 0.85rem; margin-top: 0.35rem; }

.team { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); }
.team-card:hover { border-color: rgba(16, 185, 129, 0.2); transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient-main); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; font-weight: 700; }
.team-card h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--primary); font-size: 0.82rem; font-weight: 500; margin-bottom: 0.75rem; }
.team-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-details .icon { width: 44px; height: 44px; min-width: 44px; background: rgba(16, 185, 129, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-details .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.15rem; }
.contact-details .value { color: var(--text-primary); font-size: 0.95rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-size: 0.92rem; font-family: inherit; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }

.page-hero { padding: 10rem 2rem 4rem; text-align: center; background: var(--bg-dark); position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.content-page { padding: 4rem 2rem 6rem; }
.content-page .content-inner { max-width: 860px; margin: 0 auto; }
.content-page .last-updated { display: inline-block; padding: 0.4rem 1rem; background: rgba(16, 185, 129, 0.08); border-radius: 8px; font-size: 0.82rem; color: var(--primary); margin-bottom: 2.5rem; }
.content-page h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--text-primary); }
.content-page h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; color: var(--primary); }
.content-page p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.content-page ul, .content-page ol { color: var(--text-secondary); margin: 0 0 1.5rem 1.5rem; line-height: 1.8; }
.content-page li { margin-bottom: 0.5rem; }
.content-page .card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }

footer { background: var(--bg-nav); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 1rem; max-width: 320px; line-height: 1.7; }
.footer-brand .logo { font-size: 1.3rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer h4 { font-size: 0.95rem; margin-bottom: 1.25rem; color: var(--text-primary); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 3px; }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--text-muted); }

@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  nav .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: rgba(13, 13, 36, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 1rem; gap: 0.25rem; border-bottom: 1px solid var(--border); transform: translateY(-100%); opacity: 0; pointer-events: none; transition: var(--transition); }
  nav .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .services-grid, .team-grid, .about-stats { grid-template-columns: 1fr; }
}
