/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #704d61;
  --primary-dark: #4a3340;
  --primary-light: #977176;
  --accent: #704d61;
  --text: #3b3b3f;
  --text-light: #727272;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #282b33;
  --border: #eaeaea;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: 'Roboto Condensed', sans-serif;
  --font-body: 'Urbanist', sans-serif;
  --font-display: 'Pacifico', cursive;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
a { color: var(--text); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.section { padding: 80px 0; }

/* Scroll Progress */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: transparent; z-index: 10001; transform-origin: left; pointer-events: none; }
html.js .scroll-progress { background: linear-gradient(90deg, var(--primary), var(--primary-light)); transform: scaleX(0); }

/* Back to Top */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 9999; box-shadow: 0 4px 12px rgba(112,77,97,0.3); }
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-family: var(--font-heading); font-size: 16px; font-weight: 700; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 18px; }

/* Section Headers */
.section-header-center { text-align: center; margin-bottom: 50px; }
.section-label { display: inline-block; font-family: var(--font-display); font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.section-title { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.2; }
.section-subtitle { font-size: 18px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ===== HEADER ===== */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 10000; }
.header-top { background: var(--bg-light); border-bottom: 1px solid var(--border); display: none; }
.header-top-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 15px; }
.header-top-left { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text); }
.header-top-item { display: inline-flex; align-items: center; gap: 5px; color: var(--text); }
.header-top-item:hover { color: var(--primary); }
.header-top-sep { color: var(--border); margin: 0 6px; }
.header-top-right { display: flex; align-items: center; gap: 10px; }
.header-top-right a { color: var(--text); display: flex; align-items: center; }
.header-top-right a:hover { color: var(--primary); }

.header-main { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.header-main-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; }
.logo { display: flex; }
.logo-img { height: 60px; width: auto; }

/* Navigation */
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link { display: block; padding: 8px 14px; font-family: var(--font-heading); font-size: 14px; font-weight: 400; color: var(--text); border-radius: var(--radius); transition: all var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link:hover, .nav-link.active { background: var(--primary); color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; box-shadow: var(--shadow-hover); border-radius: var(--radius); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 100; padding: 8px 0; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 8px 20px; font-size: 14px; color: var(--text); transition: all var(--transition); }
.dropdown-menu li a:hover { background: var(--primary); color: #fff; }

.nav-close { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 28px; height: 3px; background: var(--text); border-radius: 3px; transition: all var(--transition); }
.nav-cta-desktop { display: inline-flex; }
.nav-cta-mobile { display: none; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: 100px; background: var(--primary-dark); }
.hero-slides { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(40,43,51,0.85) 0%, rgba(74,51,64,0.7) 100%); }
.hero-slide-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; height: 100%; padding-top: 0; max-width: 650px; }
.hero-slide-label { display: inline-block; font-family: var(--font-display); font-size: 20px; color: var(--primary-light); margin-bottom: 16px; }
.hero-slide-title { font-family: var(--font-heading); font-size: 52px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-slide-desc { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 30px; max-width: 500px; }
.hero-slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-slider-nav { position: absolute; top: 50%; left: 0; right: 0; z-index: 5; display: flex; justify-content: space-between; padding: 0 30px; pointer-events: none; transform: translateY(-50%); }
.hero-slider-arrow { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); backdrop-filter: blur(4px); pointer-events: auto; }
.hero-slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-slider-arrow svg { width: 24px; height: 24px; }

.hero-slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-slider-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); background: transparent; cursor: pointer; transition: all var(--transition); }
.hero-slider-dots button.active { background: #fff; border-color: #fff; }
.hero-slider-dots button:hover { border-color: #fff; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-content .section-label { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 20px; font-size: 38px; }
.about-content p { margin-bottom: 16px; color: var(--text-light); line-height: 1.8; }
.about-awards { display: flex; gap: 16px; margin: 24px 0; }
.about-awards img { width: 100px; height: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }

/* ===== SERVICES ===== */
.services-section { background: #fff; }
.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-lg); padding: 36px 28px; text-align: center; transition: all var(--transition); }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--primary); }
.service-card-icon { width: 70px; height: 70px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-light); transition: all var(--transition); }
.service-card:hover .service-card-icon { background: var(--primary); }
.service-card:hover .service-card-icon svg { stroke: #fff; }
.service-card-icon svg { width: 36px; height: 36px; transition: stroke var(--transition); }
.service-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.service-card-desc { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-card-link { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 6px; transition: all var(--transition); }
.service-card-link::after { content: '\2192'; transition: transform var(--transition); }
.service-card-link:hover::after { transform: translateX(4px); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card { text-align: center; padding: 40px 24px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: all var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon { width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-light); transition: all var(--transition); }
.why-card:hover .why-icon { background: var(--primary); }
.why-card:hover .why-icon svg { stroke: #fff; }
.why-icon svg { width: 40px; height: 40px; transition: stroke var(--transition); }
.why-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.why-desc { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ===== TEAM ===== */
.team-section { background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 400px; margin: 0 auto; }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-card-image { position: relative; overflow: hidden; }
.team-card-image img { width: 100%; height: 350px; object-fit: cover; }
.team-card-overlay { position: absolute; inset: 0; background: rgba(112,77,97,0.7); display: flex; align-items: flex-end; justify-content: center; padding: 20px; opacity: 0; transition: opacity var(--transition); }
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-social { display: flex; gap: 12px; }
.team-card-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: all var(--transition); }
.team-card-social a:hover { background: #fff; color: var(--primary); }
.team-card-info { padding: 24px; }
.team-card-name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card-role { font-size: 14px; color: var(--primary); font-weight: 600; }

/* ===== STATS ===== */
.stats-section { background: var(--primary-dark); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 20px; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.stat-label { font-size: 16px; color: rgba(255,255,255,0.75); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-light); }
.testimonials-slider { max-width: 800px; margin: 0 auto; position: relative; }
.testimonials-track { display: flex; overflow: hidden; }
.testimonial-card { flex: 0 0 100%; padding: 40px; text-align: center; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 0 0 30px; }
.testimonial-stars { font-size: 24px; color: #f4c150; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-text { font-size: 17px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: block; font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text); }
.testimonial-date { display: block; font-size: 14px; color: var(--text-light); margin-top: 4px; }
.testimonials-dots { display: flex; justify-content: center; gap: 10px; }
.testimonials-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--primary); background: transparent; cursor: pointer; transition: all var(--transition); }
.testimonials-dots button.active { background: var(--primary); }

/* ===== CTA ===== */
.cta-section { background: url('assets/img/hero-bg.jpg') center center / cover no-repeat fixed; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(40,43,51,0.9) 0%, rgba(74,51,64,0.85) 100%); }
.cta-wrapper { position: relative; z-index: 1; text-align: center; }
.cta-content { max-width: 650px; margin: 0 auto; }
.cta-label { display: inline-block; font-family: var(--font-display); font-size: 22px; color: var(--primary-light); margin-bottom: 12px; }
.cta-heading { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-text { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.cta-contact { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 16px; }
.cta-contact-item svg { flex-shrink: 0; color: var(--primary-light); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICE AREAS ===== */
.areas-section { background: #fff; }
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 800px; margin: 0 auto; }
.area-badge { display: inline-block; padding: 10px 28px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 50px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--text); transition: all var(--transition); }
.area-badge:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-card-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-text h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-card-text p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.contact-card-text a { color: var(--primary); font-size: 14px; }
.contact-card-text .hours-note { color: var(--primary); font-weight: 600; margin-top: 4px; }
.contact-info-col .btn { width: 100%; margin-top: 8px; }

.contact-form-wrapper { background: #fff; padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form-wrapper h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group .required { color: #e74c3c; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 15px; border: 1px solid var(--border); border-radius: var(--radius); transition: border-color var(--transition); outline: none; background: var(--bg-light); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group input.error, .form-group textarea.error { border-color: #e74c3c; }
.form-group input.success, .form-group textarea.success { border-color: #27ae60; }
.form-error { display: none; font-size: 12px; color: #e74c3c; margin-top: 4px; }
.form-group input.error ~ .form-error, .form-group textarea.error ~ .form-error { display: block; }
.form-submit { width: 100%; }

/* ===== FOOTER ===== */
.footer-top { background: var(--bg-light); padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--primary-dark); transform: translateY(-2px); }
.footer-heading { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 14px; color: var(--text-light); transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.footer-contact li a { color: var(--primary); font-size: 14px; }

.footer-bottom { background: var(--bg-dark); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { color: #fff; }

/* ===== STICKY CTA ===== */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000; background: var(--primary-dark); box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-weight: 700; font-family: var(--font-heading); font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; transition: all var(--transition); border: none; cursor: pointer; }
.sticky-btn:hover { background: var(--primary); color: #fff; }
.sticky-btn svg { width: 18px; height: 18px; }

/* ===== VIDEO MODAL ===== */
.video-modal { display: none; position: fixed; inset: 0; z-index: 20000; align-items: center; justify-content: center; }
.video-modal.active { display: flex; }
.video-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.video-modal-content { position: relative; width: 90%; max-width: 900px; z-index: 1; }
.video-modal-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; z-index: 2; }
.video-modal-iframe-wrapper { position: relative; padding-bottom: 56.25%; }
.video-modal-iframe-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; border-radius: var(--radius); }

/* ===== FOCUS VISIBLE ===== */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ===== ANIMATIONS ===== */
html.js .wow { opacity: 0; transition: all 0.6s ease; }
html.js .wow.visible { opacity: 1; }
html.js .wow.fade-in { transform: translateY(30px); }
html.js .wow.fade-in.visible { transform: translateY(0); }
html.js .wow.fade-in-up { transform: translateY(40px); }
html.js .wow.fade-in-up.visible { transform: translateY(0); }
html.js .wow.fade-in-left { transform: translateX(-40px); }
html.js .wow.fade-in-left.visible { transform: translateX(0); }
html.js .wow.fade-in-right { transform: translateX(40px); }
html.js .wow.fade-in-right.visible { transform: translateX(0); }

/* ===== STAGGERED DELAYS ===== */
.section-label-delay { transition-delay: 0.05s; }
.section-title-delay { transition-delay: 0.15s; }
.section-subtitle-delay { transition-delay: 0.25s; }

/* ===== RESPONSIVE ===== */

/* Tablets / Small Desktop */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slide-title { font-size: 42px; }
  .section-title { font-size: 36px; }
  .hero-slider { min-height: 500px; }
  .hero-slide-actions .btn-lg { padding: 14px 28px; font-size: 16px; }
}

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-slider { margin-top: 70px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 32px; }
  .section-label { font-size: 16px; }

  .header-top { display: none; }
  .logo-img { height: 45px; }

  .hamburger { display: flex; }
  .nav-cta-desktop { display: none; }

  .nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh; background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,0.1); z-index: 10001; transition: right 0.3s ease; overflow-y: auto; }
  .nav.open { right: 0; }
  .nav-close { display: block; position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 32px; cursor: pointer; color: var(--text); }
  .nav-list { flex-direction: column; padding: 60px 20px 20px; align-items: stretch; gap: 0; }
  .nav-link { padding: 12px 16px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding: 0; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: 10px 24px; }
  .nav-cta-mobile { display: block; margin-top: 16px; }
  .nav-cta-mobile .btn { width: 100%; }

  .hero-slider { min-height: 450px; }
  .hero-slide-title { font-size: 34px; }
  .hero-slide-desc { font-size: 16px; }
  .hero-slide-actions { flex-direction: column; align-items: flex-start; }
  .hero-slide-actions .btn-lg { width: 100%; text-align: center; }
  .hero-slider-nav { padding: 0 10px; }
  .hero-slider-arrow { width: 40px; height: 40px; }
  .hero-slider-dots { bottom: 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 36px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .cta-heading { font-size: 32px; }
  .cta-contact { gap: 16px; flex-direction: column; align-items: center; }
  .sticky-cta { display: flex; }
  .team-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-slide-title { font-size: 28px; }
  .hero-slider { min-height: 400px; }
  .hero-slide-content { max-width: 100%; }
  .section-title { font-size: 28px; }
  .stat-number { font-size: 30px; }
  .stat-label { font-size: 13px; }
  .testimonial-card { padding: 24px; }
  .about-awards img { width: 80px; }
}

/* ===== SELECT ENHANCEMENT ===== */
select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23704d61' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
