/* ===================================
   CONTACT PAGE STYLES
   =================================== */

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
}

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

/* ================================
   Contact Hero Section
================================ */
.contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Hero Image Container */
.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.hero-background-image:hover {
  transform: scale(1.02);
}

/* Add animated background pattern */
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  animation: patternMove 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes patternMove {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* dark overlay */
.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.85) 50%, rgba(71, 85, 105, 0.8) 100%);
  z-index: 2;
}

/* hero content */
.contact-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* badge styling */
.contact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-hero .hero-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.contact-hero .hero-badge i {
  color: #ffd700;
  font-size: 18px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  text-align: center;
}

.contact-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
}

/* Contact methods grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.contact-method {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-method:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.method-icon {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.method-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.method-info p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
  font-weight: 500;
}

.method-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ===================================
   SPACER SECTION
   =================================== */

.section-spacer {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-spacer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.02'%3E%3Cpath d='M0 0h100v100H0z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.spacer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.spacer-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
    position: relative;
}

.spacer-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.spacer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.contact-form-section {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Side */
.contact-info {
  position: sticky;
  top: 100px;
}

.section-header {
  margin-bottom: 30px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-info > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

/* Consultation Benefits */
.consultation-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  border-color: var(--secondary-color);
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.benefit-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Urgent Contact Box */
.urgent-contact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 25px;
  border-radius: 12px;
  color: var(--white);
}

.urgent-info {
  display: flex;
  gap: 20px;
  align-items: start;
}

.urgent-info i {
  font-size: 32px;
  opacity: 0.9;
}

.urgent-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.urgent-info p {
  opacity: 0.95;
  line-height: 1.6;
}

.urgent-info a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.contact-form h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

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

/* Checkbox Group */
.checkbox-group {
  margin: 30px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
  color: #666;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
  border-color: var(--secondary-color);
}

.checkbox-label input:checked ~ .checkmark {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Form Submit Button */
.btn-full {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

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

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

.form-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #888;
  margin-top: 20px;
  text-align: center;
  justify-content: center;
}

.form-note i {
  color: var(--secondary-color);
}

/* Form Success/Error Messages */
.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  display: none;
  animation: slideInDown 0.4s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ===================================
   LOCATIONS SECTION
   =================================== */

.locations-section {
  padding: 100px 0;
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.location-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

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

.location-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.location-info {
  padding: 35px;
}

.location-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.location-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
  color: #666;
}

.detail-item i {
  color: var(--secondary-color);
  margin-top: 4px;
  font-size: 18px;
}

.location-info > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.location-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===================================
   SOCIAL MEDIA SECTION
   =================================== */

.social-media-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  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='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%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");
  opacity: 0.5;
}

.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.social-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

/* Platform-specific colors */
.social-card[data-platform="facebook"]:hover {
  background: linear-gradient(135deg, #1877f2 0%, #4267b2 100%);
  color: white;
}

.social-card[data-platform="instagram"]:hover {
  background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
  color: white;
}

.social-card[data-platform="youtube"]:hover {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
}

.social-card[data-platform="linkedin"]:hover {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
  color: white;
}

.social-card[data-platform="pinterest"]:hover {
  background: linear-gradient(135deg, #bd081c 0%, #e60023 100%);
  color: white;
}

.social-card[data-platform="tiktok"]:hover {
  background: linear-gradient(135deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
  color: white;
}

.social-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.social-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: scale(1.1);
}

.social-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.social-card:hover .social-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.social-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.social-card:hover .social-content h3 {
  color: inherit;
}

.social-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.social-card:hover .social-content p {
  color: rgba(255, 255, 255, 0.9);
}

.follower-count {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.social-card:hover .follower-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.social-card:hover .social-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-btn i {
  transition: transform 0.3s ease;
}

.social-btn:hover i {
  transform: translateX(5px);
}

.social-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-card:hover .social-bg-pattern {
  opacity: 1;
}

/* Newsletter CTA */
.newsletter-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-cta::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='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.newsletter-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.newsletter-form .input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: white;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .subscribe-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.newsletter-form .subscribe-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===================================
   MAP SECTION ENHANCEMENTS
   =================================== */

.map-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder {
  height: 500px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Make any embedded map iframe fill the placeholder responsively */
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.map-content i {
  font-size: 80px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  opacity: 0.5;
}

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

.map-content p {
  color: #666;
  margin-bottom: 25px;
}

.map-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.map-info > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

.transport-item {
  display: flex;
  gap: 15px;
  align-items: start;
}

.transport-item i {
  font-size: 28px;
  color: var(--secondary-color);
  width: 40px;
}

.transport-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.transport-item p {
  color: #666;
  font-size: 0.95rem;
}

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

.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 20px rgba(52, 152, 219, 0.1);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.faq-question:hover {
  color: var(--secondary-color);
}

.faq-question i {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@media (max-width: 1200px) {
  .contact-content {
    gap: 40px;
  }

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

@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

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

  .contact-info {
    position: static;
  }

  .map-container {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    height: 400px;
  }

  /* Social Media Responsive */
  .social-media-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }

    .newsletter-cta {
        padding: 40px 30px;
    }
    
    /* Spacer Section Responsive */
    .section-spacer {
        padding: 60px 0;
    }
    
    .spacer-content {
        gap: 20px;
    }
    
    .spacer-line {
        width: 80px;
    }
    
    .spacer-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero > .container > .hero-content > p {
    font-size: 1rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

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

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  /* Social Media Mobile */
  .social-media-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-card {
    padding: 30px 20px;
  }

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

  .newsletter-cta {
    padding: 30px 20px;
  }

  .newsletter-form .input-group {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .newsletter-form input {
    text-align: center;
  }

    .newsletter-form .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Spacer Section Mobile */
    .section-spacer {
        padding: 40px 0;
    }
    
    .spacer-content {
        gap: 15px;
    }
    
    .spacer-line {
        width: 60px;
    }
    
    .spacer-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Contact Hero Mobile */
    .contact-hero {
        min-height: 90vh;
    }
    
    .hero-background-image {
        object-position: center center;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
}  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-form-section,
  .locations-section,
  .faq-section {
    padding: 60px 0;
  }

  .contact-info h2,
  .map-info h3 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px;
  }

  .location-info {
    padding: 25px;
  }
}

/* Loading States */
.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.form-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
