:root {
  --primary-color: #1e40af;
  --secondary-color: #f97316;
  --accent-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px 0 rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  --gradient-secondary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

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

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--border-radius-lg);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

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

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

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

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
  color: white;
  padding: 8px 0;
  font-size: 0.875rem;
  position: relative;
}

.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 2rem;
}

.branch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.branch-name {
  font-weight: 500;
}

.phone, .whatsapp {
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
}

.phone {
  background-color: var(--primary-color);
  border-radius: 4px;
  transition: var(--transition);
}

.phone:hover {
  background-color: #1e3a8a;
  transform: scale(1.05);
}

.whatsapp {
  background-color: #25d366;
  border-radius: 4px;
  transition: var(--transition);
}

.whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 2px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e40af' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.badge svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.badge span {
  font-weight: 500;
  color: var(--text-dark);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.social-media-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.social-intro {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.social-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.social-btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.social-btn-large:hover::before {
  left: 100%;
}

.social-btn-large.tiktok {
  background: linear-gradient(135deg, #000000, #333333);
}

.social-btn-large.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-btn-large.tiktok:hover {
  background: linear-gradient(135deg, #333333, #000000);
}

.social-btn-large.youtube:hover {
  background: linear-gradient(135deg, #cc0000, #990000);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.social-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.social-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* Social Media Section */
.social-media-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.social-media-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e40af' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.social-buttons-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-btn-large {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.social-btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.social-btn-large:hover::before {
  left: 100%;
}

.social-btn-large.tiktok {
  background: linear-gradient(135deg, #000000, #1a1a1a, #333333);
  border: 2px solid rgba(255,255,255,0.1);
}

.social-btn-large.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000, #990000);
  border: 2px solid rgba(255,255,255,0.1);
}

.social-btn-large:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.social-btn-large.tiktok:hover {
  background: linear-gradient(135deg, #1a1a1a, #000000, #2a2a2a);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.social-btn-large.youtube:hover {
  background: linear-gradient(135deg, #cc0000, #ff0000, #aa0000);
  box-shadow: 0 15px 40px rgba(255,0,0,0.3);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.social-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.social-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.social-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.social-btn-large:hover .social-arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
}

/* Section Styling */
section {
  padding: 4rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Section */
.products-section {
  background-color: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-light);
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  margin: 0;
}

/* Process Section */
.process-section {
  background-color: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
  margin: 0;
}

/* Coverage Section */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.coverage-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.coverage-icon {
  margin-bottom: 1.5rem;
}

.coverage-icon svg {
  color: var(--primary-color);
}

.coverage-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.coverage-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.coverage-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Related Links Section */
.related-links-section {
  background-color: var(--bg-light);
}

.related-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.related-link {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.related-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.related-link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-link:hover::before {
  transform: scaleX(1);
}

.related-link h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.related-link p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--gradient-secondary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  transform: translateY(-2px);
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
  color: white;
  padding: 3rem 0 1rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer .social-links a {
  color: white;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
}

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

.contact-item {
  margin-bottom: 1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item a {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.875rem;
}

.contact-item a[href^="tel:"] {
  background-color: var(--primary-color);
  color: white;
}

.contact-item a[href^="https://wa.me/"] {
  background-color: #25d366;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Mobile Floating Buttons */
/* Additional Services Section */

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: var(--text-light);
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item span {
  color: var(--text-light);
}

/* Touch device optimizations */
.touch-device .btn:hover,
.touch-device .social-btn-large:hover,
.touch-device .product-card:hover,
.touch-device .feature-card:hover {
  transform: none;
}

.touch-device .btn:active,
.touch-device .social-btn-large:active {
  transform: scale(0.95);
}

/* Viewport height units fix */
.hero {
  min-height: calc(var(--vh, 1vh) * 50);
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
  .top-bar {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .mobile-floating {
    bottom: max(20px, env(safe-area-inset-bottom));
    left: max(20px, env(safe-area-inset-left));
    right: max(20px, env(safe-area-inset-right));
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Header */
  .header-content {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
  }

  .header-cta {
    margin-right: auto;
  }

  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    align-items: center;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-btn-large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

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

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

  /* Grids */
  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .related-links-grid {
    grid-template-columns: 1fr;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .social-channels {
    grid-template-columns: 1fr;
  }
  
  .channel-card {
    flex-direction: column;
    text-align: center;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta,
  .coverage-contact {
    flex-direction: column;
    align-items: center;
  }

  .social-buttons-large {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .social-btn-large {
    padding: 1.5rem 2rem;
    min-height: 100px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
  }

  .social-title {
    font-size: 1.25rem;
  }

  .social-subtitle {
    font-size: 0.9rem;
  }

  /* Mobile Floating Buttons */
  .mobile-floating {
    display: flex;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Social Media Section Mobile */
  .social-media-section .social-buttons-large {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .social-media-section .social-btn-large {
    min-height: 80px;
    padding: 1.25rem 1.5rem;
  }

  .social-media-section .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-media-section .social-title {
    font-size: 1.125rem;
  }

  .social-media-section .social-subtitle {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .floating-branch {
    flex-direction: row;
    justify-content: space-between;
    padding: 6px;
  }

  .branch-label {
    font-size: 0.75rem;
    padding: 0 6px;
  }

  .floating-btn {
    width: 40px;
    height: 40px;
  }

  /* Extra small screens */
  .social-media-section .social-btn-large {
    min-height: 70px;
    padding: 1rem;
    gap: 1rem;
  }

  .social-media-section .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-media-section .social-title {
    font-size: 1rem;
  }

  .social-media-section .social-subtitle {
    font-size: 0.8rem;
  }

  .social-arrow {
    width: 30px;
    height: 30px;
  }

  /* Hero badges mobile */
  .hero-badges {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .badge {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  /* Section headers mobile */
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}