:root {
  --primary: #2196f3;
  --primary-dark: #1565c0;
  --bg-light: #f8f9fa;
  --text-dark: #1c1c1c;
  --text-gray: #5f6368;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --success: #28a745;
  --whatsapp: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.8;
  padding-bottom: 60px;
}

.header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 40px 20px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  animation: float 20s linear infinite;
  pointer-events: none;
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100px);
  }
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.header h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.header p {
  font-size: 14px;
  opacity: 0.95;
}

.container {
  max-width: 900px;
  margin: -30px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.intro-section {
  text-align: center;
  margin-bottom: 40px;
}

.intro-section h2 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 15px;
}

.intro-section p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  border-right: 4px solid var(--primary);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-method.whatsapp {
  border-right-color: var(--whatsapp);
}

.contact-method.whatsapp .method-icon {
  background: var(--whatsapp);
}

.contact-method.email {
  border-right-color: #EA4335;
}

.contact-method.email .method-icon {
  background: #EA4335;
}

.contact-method.facebook {
  border-right-color: #1877f2;
}

.contact-method.facebook .method-icon {
  background: #1877f2;
}

.contact-method.website {
  border-right-color: var(--primary);
}

.contact-method.website .method-icon {
  background: var(--primary);
}

.method-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.method-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.method-info {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
  word-break: break-all;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-btn.whatsapp-btn {
  background: var(--whatsapp);
}

.contact-btn.email-btn {
  background: #EA4335;
}

.contact-btn.facebook-btn {
  background: #1877f2;
}

.contact-btn.website-btn {
  background: var(--primary);
}

.info-section {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(25, 118, 210, 0.04) 100%);
  padding: 25px;
  border-radius: 12px;
  border-right: 4px solid var(--primary);
  margin-bottom: 30px;
}

.info-section h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-section ul {
  margin-right: 25px;
}

.info-section li {
  margin-bottom: 10px;
  color: #444;
  line-height: 1.8;
}

.response-time {
  background: #d4edda;
  border-right: 4px solid var(--success);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.response-time i {
  color: var(--success);
  font-size: 24px;
  margin-bottom: 10px;
}

.response-time h3 {
  color: var(--success);
  font-size: 18px;
  margin-bottom: 8px;
}

.response-time p {
  color: #155724;
  margin-bottom: 0;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.back-home {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  z-index: 1000;
}

.back-home:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 24px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .back-home {
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .back-home span {
    display: none;
  }

  .method-info {
    font-size: 14px;
  }
}


/* ========== Inline Styles ========== */

/* From: <p> */
.element {
  text-align: center;
  color: #444;
  line-height: 1.9;
  margin-bottom: 0;

}