/* ==========================================================================
   Pro Drains - Complete Responsive Stylesheet
   Primary: #1B2A4A | Secondary: #EB7A0B | Accent: #377A8D
   Colors matched to Pro Drains logo
   ========================================================================== */

/* CSS Custom Properties */
:root {
  --color-primary: #1B2A4A;
  --color-primary-light: #2a3f6b;
  --color-primary-dark: #111d33;
  --color-secondary: #EB7A0B;
  --color-secondary-light: #f59e3b;
  --color-secondary-dark: #c46508;
  --color-accent: #377A8D;
  --color-accent-light: #4a9bb0;
  --color-accent-dark: #2a5f6e;
  --color-white: #ffffff;
  --color-off-white: #f7f8fa;
  --color-gray-100: #f0f2f5;
  --color-gray-200: #e2e5eb;
  --color-gray-300: #ccd0d8;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #1a1a2e;
  --color-text: #2d3748;
  --color-text-light: #64748b;
  --color-success: #16a34a;
  --color-danger: #dc2626;
  --color-star: #f59e0b;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-secondary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--color-primary);
  font-weight: 700;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 48px 0;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title,
.section-dark .section-label {
  color: var(--color-white);
}

.section-light {
  background-color: var(--color-off-white);
}

/* ==========================================================================
   Typography Helpers
   ========================================================================== */

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Watermark Banner
   ========================================================================== */

.watermark-banner a {
  color: #D4871C;
  font-weight: 600;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.logo-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-menu {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-list a:hover {
  color: var(--color-secondary);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: none;
}

.header-cta .btn {
  white-space: nowrap;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  transition: border-color var(--transition);
}

.lang-toggle:hover {
  border-color: var(--color-primary);
}

.lang-toggle-divider {
  display: none;
}

.lang-toggle-option {
  padding: 4px 10px;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition);
  color: var(--color-gray-500);
}

.lang-toggle-option.is-active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* Mobile Menu Open State */
.nav-menu.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  padding: 80px 24px 24px;
  z-index: 999;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.nav-menu.is-open .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.nav-menu.is-open .nav-list li {
  width: 100%;
}

.nav-menu.is-open .nav-list a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.4;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero[style*="background-image"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(17,28,50,0.92) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,135,28,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content.text-center {
  margin: 0 auto;
}

.page-hero .hero-content {
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,135,28,0.2);
  border: 1px solid rgba(212,135,28,0.4);
  color: var(--color-secondary-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Page Hero (Inner Pages)
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 40px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .section-subtitle {
  margin: 0 auto 32px;
}

.page-hero .hero-ctas {
  justify-content: center;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.trust-item svg {
  flex-shrink: 0;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

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

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-secondary);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 2.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.service-features {
  margin: 12px 0 0;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--color-text);
  padding: 4px 0 4px 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* Services Detail */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.service-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.service-detail-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-detail-content {
  padding: 24px;
}

.service-detail-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-section {
  padding: 48px 0;
}

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

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--color-star);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-gray-200);
}

.google-badge img {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Why / Features
   ========================================================================== */

.why-section {
  padding: 48px 0;
}

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

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  transition: all var(--transition);
}

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

.why-card h3,
.section-dark .why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section {
  padding: 48px 0;
}

.contact-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 40px 0;
  text-align: center;
}

.contact-hero h1 {
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.contact-form-wrapper h2,
.contact-form-wrapper h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.contact-form-wrapper p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.contact-info-card a {
  font-weight: 600;
}

.emergency-card {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.emergency-card h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.emergency-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.emergency-card .btn {
  background: var(--color-white);
  color: var(--color-secondary-dark);
  border-color: var(--color-white);
}

.emergency-card .btn:hover {
  background: var(--color-gray-100);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 48px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-section .hero-ctas {
  justify-content: center;
}

.cta-section .hero-stats {
  justify-content: center;
}

.cta-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.cta-phone:hover {
  color: var(--color-secondary-light);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(212,135,28,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
  padding: 48px 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--color-gray-900);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-section {
  padding: 48px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-services .footer-links li,
.footer-contact .footer-links li {
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-links li a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-contact .footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-contact .footer-links li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-secondary);
}

.footer-contact .footer-links li a {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-legal p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-watermark p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-watermark a {
  color: var(--color-secondary);
  text-decoration: none;
}

.footer-watermark a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
  padding: 48px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--color-text);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100vw;
  background: #1a1a2e;
  color: var(--color-white);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner-text {
  font-size: 0.88rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

.cookie-banner-btn {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 10px 28px;
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-banner-btn:hover {
  background: var(--color-secondary-dark);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* 576px — Small devices */
@media (min-width: 576px) {
  .container {
    padding: 0 24px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .gallery-grid {
    gap: 16px;
  }

  .gallery-item img {
    height: 220px;
  }

  .cookie-banner {
    flex-direction: row;
    justify-content: center;
  }

  .cookie-banner-text {
    text-align: left;
  }
}

/* 768px — Medium devices */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 64px 0;
  }

  h1 { font-size: 2.5rem; }

  .hero {
    padding: 72px 0 64px;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .page-hero {
    padding: 56px 0;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

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

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

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

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

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

  .contact-form-wrapper {
    padding: 32px;
  }

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

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

  .gallery-item img {
    height: 200px;
  }

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

  .reviews-section,
  .why-section,
  .video-section,
  .gallery-section,
  .contact-section {
    padding: 56px 0;
  }

  .cta-section {
    padding: 56px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .legal-page {
    padding: 64px 0;
  }
}

/* 992px — Large devices */
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    animation: none;
  }

  .nav-menu.is-open {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    animation: none;
  }

  .nav-menu .nav-list {
    flex-direction: row;
    gap: 28px;
  }

  .nav-menu .nav-list a {
    font-size: 0.95rem;
    padding: 4px 0;
    border-bottom: none;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo-img {
    height: 75px;
  }

  .header-cta {
    display: flex;
    align-items: center;
  }

  .header-actions {
    gap: 16px;
  }

  .hero {
    padding: 80px 0 72px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2.35rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .services-detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-section h2 {
    font-size: 2.25rem;
  }

  .cta-phone {
    font-size: 2rem;
  }

  .reviews-section,
  .why-section,
  .video-section,
  .gallery-section,
  .contact-section {
    padding: 64px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .legal-page {
    padding: 80px 0;
  }
}

/* 1200px — Extra large devices */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 96px 0 80px;
  }

  .hero-content h1 {
    font-size: 3.35rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .page-hero {
    padding: 64px 0;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .services-grid {
    gap: 24px;
  }

  .reviews-grid {
    gap: 24px;
  }

  .why-grid {
    gap: 24px;
  }

  .features-grid {
    gap: 24px;
  }

  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    gap: 48px;
  }

  .gallery-item img {
    height: 240px;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Utility / Misc
   ========================================================================== */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Smooth focus styles */
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--color-secondary);
  color: var(--color-white);
}