/* ==========================================
   FUTURE HOME - MODERN MINIMAL DESIGN SYSTEM
   Deep Charcoal & Muted Gold
   ========================================== */

/* ==========================================
   CSS RESET & ROOT VARIABLES
   ========================================== */

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

:root {
  /* Modern Muted Palette */
  --primary: #1a1a2e;
  --primary-dark: #12121f;
  --primary-light: #2d2d44;
  --accent: #c9a96e;
  --accent-hover: #b8944f;

  /* Neutral Colors */
  --background: #fafafa;
  --card-bg: #ffffff;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-gray: #6b7280;
  --text-muted: #9ca3af;

  /* Borders */
  --border-light: #e5e7eb;

  /* Shadows - Ultra-subtle */
  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-medium: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.08);

  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 60px;
  --spacing-xl: 100px;

  /* Transitions - Snappy */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.01em;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-weight: 300;
}

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

section {
  padding: 140px var(--spacing-sm);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   BUTTONS - FLAT & SHARP
   ========================================== */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary);
  border-color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-nav {
  background: var(--accent);
  color: var(--primary);
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--accent-hover);
}

/* ==========================================
   NAVIGATION - CLEAN MINIMAL BAR
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.99);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--spacing-sm);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 68px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.logo-img:hover {
  opacity: 0.85;
}

.logo-main {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--text-light);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   HERO SECTION - REFINED
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://placehold.co/2560x1440/1B2838/FFFFFF?text=Future+Home+Fence') center/cover no-repeat;
  filter: brightness(0.8);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 24px 0;
  color: var(--text-light);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}

.accent-text {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
  padding: 140px 20px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  font-size: 2rem;
  color: var(--accent);
}

.feature-item span {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

/* ==========================================
   FEATURES HIGHLIGHT
   ========================================== */

.features-highlight {
  padding: 140px 20px;
  background: var(--background);
}

.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.4rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 80px;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-box {
  background: var(--card-bg);
  padding: 48px 32px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-fast);
  position: relative;
}

.feature-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-box:hover::after {
  width: 100%;
}

.feature-box i {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
  transition: opacity var(--transition-fast);
}

.feature-box:hover i {
  opacity: 0.8;
}

.feature-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-box p {
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================================
   OFFER SHOWCASE
   ========================================== */

.offer {
  padding: 140px 20px;
  background: white;
}

.offer-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  margin-bottom: 0;
  align-items: stretch;
}

.offer-showcase.reverse {
  direction: rtl;
}

.offer-showcase.reverse > * {
  direction: ltr;
}

.showcase-image {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.2) 0%, rgba(26, 26, 46, 0.35) 100%);
  transition: opacity var(--transition-fast);
}

.showcase-image:hover .showcase-overlay {
  opacity: 0.8;
}

.showcase-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--background);
}

.showcase-content h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 24px;
}

.showcase-content p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ==========================================
   GALLERY
   ========================================== */

.gallery {
  padding: 140px 20px;
  background: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

.gallery-overlay::after {
  content: none;
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: white;
}

/* ==========================================
   WHY US SECTION
   ========================================== */

.why-us {
  padding: 140px 20px;
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  pointer-events: none;
}

.section-title-light {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
  position: relative;
}

.why-box {
  background: rgba(255,255,255,0.05);
  padding: 48px 36px;
  border-radius: 4px;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.08);
}

.why-box:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  border-color: rgba(201, 169, 110, 0.3);
}

.why-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: opacity var(--transition-fast);
}

.why-box:hover .why-icon {
  opacity: 0.8;
}

.why-box h3 {
  color: white;
  margin-bottom: 12px;
}

.why-box p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
  padding: 140px 20px;
  background: var(--background);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.faq-item {
  background: white;
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
  padding: 140px 20px;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color var(--transition-fast);
  margin-bottom: 16px;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  margin-bottom: 24px;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.form-checkbox a:hover {
  color: var(--accent-hover);
}

/* Contact Info */
.contact-info {
  background: var(--background);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-info .subtitle {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 4px;
}

.info-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 500;
}

.info-item p {
  color: var(--text-gray);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--primary);
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-light);
  color: white;
}

.social-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Map Embed */
.map-embed {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.map-embed iframe {
  display: block;
}

/* ==========================================
   UPLOAD AREA
   ========================================== */

.upload-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.upload-area {
  border: 2px dashed var(--border-light);
  border-radius: 4px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--background);
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--accent);
  background: rgba(201, 169, 110, 0.05);
}

.upload-area i {
  font-size: 2rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.upload-area p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-browse {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.upload-previews {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.upload-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.upload-preview-remove:hover {
  background: rgba(220, 38, 38, 0.8);
}

.upload-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin: 4px 0 0;
  min-height: 0;
}

/* ==========================================
   FORM FEEDBACK & LOADING
   ========================================== */

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.form-feedback.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

#submitBtn {
  position: relative;
}

#submitBtn.loading {
  pointer-events: none;
  opacity: 0.7;
}

#submitBtn.loading .btn-text,
#submitBtn.loading .btn-icon {
  display: none;
}

#submitBtn .btn-loading {
  display: none;
}

#submitBtn.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--primary-dark);
  color: white;
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
  max-width: 300px;
}

.footer-top h5 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
}

.footer-top h5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-nav ul li a:hover {
  color: var(--accent);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-contact ul li i {
  color: var(--accent);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact ul li a:hover {
  color: var(--accent);
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.footer-social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--accent);
}

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

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }

  section { padding: 60px 0; }

  .contact-form textarea {
    resize: vertical;
  }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 40px;
    transition: right var(--transition-fast);
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: rgba(255,255,255,0.75);
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 20px;
  }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .offer-showcase,
  .offer-showcase.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase-image {
    min-height: 300px;
  }

  .showcase-content {
    padding: 40px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 24px 16px;
    word-break: break-word;
  }

  .feature-box, .faq-item {
    padding: 24px 16px;
  }

  .upload-area {
    padding: 20px 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 20px 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-top h5::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .social-links {
    flex-direction: column;
  }

  .logo-img {
    height: 50px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-showcase,
  .offer-showcase.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase-image {
    min-height: 350px;
  }

  .logo-img {
    height: 54px;
  }
}
