/* ========================================
   Naples Outdoor Kitchens & Renovations
   Main Stylesheet
======================================== */

/* --- CSS Variables --- */
:root {
  --gold: #c8a96e;
  --gold-dark: #a8853e;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --bg-light: #f8f7f4;
  --border: #e8e0d0;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: #fff; line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

/* --- Container --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* --- Section Padding --- */
.section-pad { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--dark); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px; font-weight: 600;
  font-size: 15px; font-family: 'Open Sans', sans-serif;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); letter-spacing: 0.5px;
}
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,169,110,0.4); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-white { background: #fff; color: var(--dark); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 55px; }
.section-header h2 { font-size: 2.4rem; color: var(--dark); margin-bottom: 15px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 17px; }
.section-header.light h2 { color: #fff; }
.section-header.light .section-sub { color: var(--gold); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-sub { display: inline-block; color: var(--gold); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background: var(--dark); color: rgba(255,255,255,0.8);
  padding: 8px 0; font-size: 13px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar span, .top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--gold); }
.top-bar i { color: var(--gold); margin-right: 5px; }
.top-phone { background: var(--gold); color: #fff !important; padding: 4px 14px; border-radius: 3px; font-weight: 600; }
.top-phone:hover { background: var(--gold-dark) !important; }

/* ========================================
   HEADER
======================================== */
.site-header {
  background: rgba(255,255,255,0.98); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo img { height: 55px; width: auto; object-fit: contain; }

/* Nav */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  padding: 8px 14px; font-weight: 600; font-size: 14px; color: var(--dark);
  border-radius: 4px; transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--gold); }
.main-nav > ul > li > a.active { border-bottom: 2px solid var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 0; min-width: 240px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(-10px); transition: var(--transition); z-index: 999;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { padding: 10px 20px; display: block; font-size: 14px; color: var(--text); border-left: 3px solid transparent; }
.dropdown li a:hover { background: var(--bg-light); color: var(--gold); border-left-color: var(--gold); }

.header-cta { padding: 10px 22px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--dark); transition: var(--transition); }

/* ========================================
   HERO
======================================== */
.hero {
  position: relative; min-height: 92vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; align-items: center;
  background-image: url('https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?w=1600&q=80');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,30,0.88) 0%, rgba(10,10,40,0.75) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; color: #fff; padding: 60px 0; }
.hero-badge {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 22px; line-height: 1.15; }
.hero-content h1 .gold { color: var(--gold); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 35px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 35px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.badge-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 14px; }
.badge-item i { color: var(--gold); font-size: 16px; }

/* ========================================
   STATS BAR
======================================== */
.stats-bar { background: var(--gold); padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   INTRO
======================================== */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.intro-image { position: relative; }
.intro-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover; }
.exp-badge {
  position: absolute; bottom: 30px; left: -25px;
  background: var(--gold); color: #fff; padding: 20px 25px;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
}
.exp-badge span { display: block; font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.exp-badge small { font-size: 12px; font-weight: 600; opacity: 0.9; }
.intro-text h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 20px; }
.intro-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.check-list { margin: 25px 0 30px; }
.check-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; color: var(--text); font-weight: 600; }
.check-list li i { color: var(--gold); }

/* ========================================
   SERVICES
======================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 35px 30px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: transparent; transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--gold); }
.service-card:hover::before { background: var(--gold); }
.service-icon {
  width: 60px; height: 60px; background: rgba(200,169,110,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon i { font-size: 24px; color: var(--gold); }
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon i { color: #fff; }
.service-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--gold); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }
.featured-service { grid-column: span 1; }
.services-grid .service-card:nth-last-child(1):nth-child(odd) { grid-column: 2; }

/* ========================================
   WHY US
======================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-content h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 20px; }
.why-content p { color: var(--text-light); margin-bottom: 30px; font-size: 16px; line-height: 1.8; }
.why-items { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon { width: 50px; height: 50px; min-width: 50px; background: rgba(200,169,110,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.why-icon i { color: var(--gold); font-size: 20px; }
.why-item h4 { font-size: 1rem; color: var(--dark); margin-bottom: 5px; }
.why-item p { color: var(--text-light); font-size: 14px; margin: 0; }
.why-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover; }

/* ========================================
   PROCESS
======================================== */
.process-steps { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.step { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 35px 25px; flex: 1; min-width: 200px; max-width: 240px; text-align: center; }
.step-num { font-size: 3rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 15px; }
.step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }
.step-arrow { color: var(--gold); font-size: 1.5rem; }

/* ========================================
   TESTIMONIALS
======================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 35px 30px; box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before { content: '\201C'; font-size: 5rem; color: var(--gold); opacity: 0.2; position: absolute; top: 15px; right: 25px; font-family: 'Playfair Display', serif; line-height: 1; }
.stars { margin-bottom: 16px; }
.stars i { color: #f5a623; font-size: 15px; }
.testimonial-card p { color: var(--text); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.reviewer { display: flex; flex-direction: column; }
.reviewer strong { color: var(--dark); font-weight: 700; }
.reviewer span { color: var(--gold); font-size: 13px; }

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; background: rgba(200,169,110,0.06);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.5rem; color: #fff; margin-bottom: 18px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 600px; margin: 0 auto 35px; line-height: 1.8; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   FOOTER
======================================== */
.site-footer { background: #0d0d1a; color: rgba(255,255,255,0.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 50px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-col > p, .footer-col p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact p i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.social-links a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-bottom { text-align: center; padding: 20px 0; color: rgba(255,255,255,0.4); font-size: 13px; }

/* ========================================
   PAGE HERO (Inner Pages)
======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 90px 0 70px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,30,0.85); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 15px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 600px; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ========================================
   SERVICE PAGE CONTENT
======================================== */
.service-intro { padding: 70px 0; }
.service-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.service-intro-text h2 { font-size: 2rem; color: var(--dark); margin-bottom: 18px; }
.service-intro-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.service-intro-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.highlight-box { background: var(--bg-light); border-left: 4px solid var(--gold); padding: 20px 25px; border-radius: 0 var(--radius) var(--radius) 0; margin: 25px 0; }
.highlight-box p { color: var(--text); font-weight: 600; margin: 0; }

.service-list-section { background: var(--bg-light); padding: 70px 0; }
.service-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-list-card { background: #fff; border-radius: var(--radius); padding: 30px 25px; border: 1px solid var(--border); transition: var(--transition); }
.service-list-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.service-list-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.service-list-card h3 i { color: var(--gold); }
.service-list-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

.process-section { padding: 70px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.process-card .p-num { width: 50px; height: 50px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; margin: 0 auto 18px; }
.process-card h4 { font-size: 1rem; color: var(--dark); margin-bottom: 10px; }
.process-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Contact Page */
.contact-section { padding: 70px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; color: var(--dark); margin-bottom: 18px; }
.contact-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 30px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-card:last-child { border-bottom: none; }
.info-icon { width: 46px; height: 46px; min-width: 46px; background: rgba(200,169,110,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.info-icon i { color: var(--gold); font-size: 18px; }
.info-card h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--dark); font-weight: 600; font-size: 15px; }
.info-card a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--bg-light); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-form-wrap h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 14px; font-family: 'Open Sans', sans-serif;
  color: var(--text); background: #fff; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.15); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; background: var(--gold); color: #fff; border: none; border-radius: 4px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: 'Open Sans', sans-serif; transition: var(--transition); }
.form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }
.map-section { padding: 0 0 70px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* About Page */
.about-intro { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-content h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 20px; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); height: 480px; width: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding: 70px 0; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 35px 25px; text-align: center; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.value-card .v-icon { width: 65px; height: 65px; background: rgba(200,169,110,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.value-card .v-icon i { color: var(--gold); font-size: 26px; }
.value-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.team-section { background: var(--bg-light); padding: 70px 0; }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.hours-table tr td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.hours-table tr td:first-child { font-weight: 600; }
.hours-table tr td:last-child { color: var(--gold); font-weight: 600; text-align: right; }

/* CTA Banner (inner pages) */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); padding: 70px 0; text-align: center; margin-top: 0; }
.cta-banner h2 { font-size: 2rem; color: #fff; margin-bottom: 15px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 16px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { margin-top: 30px; }

/* Mobile Nav */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-last-child(1):nth-child(odd) { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .intro-grid, .why-grid, .about-grid, .service-intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .process-steps { gap: 6px; }
  .step { min-width: 160px; padding: 25px 18px; }
  .step-arrow { display: none; }
  .exp-badge { left: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; }
  .top-bar-left, .top-bar-right { justify-content: center; }
  .main-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 9999; flex-direction: column; justify-content: center; align-items: center; overflow-y: auto; padding: 20px; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; max-width: 350px; gap: 8px; }
  .main-nav > ul > li > a { padding: 14px 20px; font-size: 16px; border-radius: 4px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg-light); padding: 8px 0 8px 20px; }
  .hamburger { display: flex; z-index: 10000; position: relative; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .header-cta { display: none; }
  .section-header h2 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 25px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .service-list-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero { background-attachment: scroll; }
}
