/* ============================================
   Yönlendirme Bariyeri - Ana Stil Dosyası
   Domain: yonlendirmebariyeri.com.tr
   Tema: Siyah zemin, minimal kurumsal tasarım
============================================ */

/* === ROOT VARIABLES === */
:root {
  --color-primary: #000000;
  --color-orange: #FF6B35;
  --color-orange-light: #FF8C42;
  --color-orange-dark: #E85D2E;
  --color-gray-dark: #1a1a1a;
  --color-gray-medium: #333333;
  --color-gray-light: #666666;
  --color-text: #e0e0e0;
  --color-white: #ffffff;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
  --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-orange-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

/* === NAVIGATION === */
.navbar-custom {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-medium);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  box-shadow: var(--shadow);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-orange) !important;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--color-text) !important;
  margin: 0 1rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: var(--transition);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-orange) !important;
}

.navbar-toggler {
  border-color: var(--color-orange);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-orange);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

/* === BUTTONS === */
.btn-custom-gold {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
  color: var(--color-white);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-custom-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
  color: var(--color-white);
}

.btn-custom-outline {
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-custom-outline:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* === SECTION STYLES === */
.section {
  padding: 80px 0;
  position: relative;
}

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

.section-darker {
  background-color: var(--color-gray-dark);
}

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

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

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
  margin: 1rem auto;
}

.section-subtitle {
  color: var(--color-gray-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* === PRODUCT CARDS === */
.product-card {
  background: var(--color-gray-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-gray-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-orange);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--color-gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  font-size: 3rem;
  border-bottom: 2px solid var(--color-gray-medium);
}

.product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-description {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.product-features li {
  padding: 0.5rem 0;
  color: var(--color-text);
  position: relative;
  padding-left: 25px;
}

.product-features li::before {
  content: '▸';
  color: var(--color-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--color-gray-dark);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--color-gray-medium);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-orange);
}

.service-icon {
  font-size: 4rem;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--color-text);
  font-size: 1rem;
}

/* === FEATURES SECTION === */
.feature-box {
  background: var(--color-gray-dark);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--color-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--color-gray-medium);
  transform: translateX(10px);
}

.feature-box h4 {
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

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

/* === CONTACT FORM === */
.contact-form {
  background: var(--color-gray-dark);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid var(--color-gray-medium);
}

.form-control {
  background: var(--color-gray-medium);
  border: 1px solid var(--color-gray-light);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.form-control:focus {
  background: var(--color-gray-medium);
  border-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
  color: var(--color-gray-light);
}

.form-label {
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* === CONTACT INFO === */
.contact-info {
  background: var(--color-gray-dark);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--color-gray-medium);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-orange);
  margin-right: 1rem;
  min-width: 30px;
}

.contact-text h5 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--color-text);
  margin: 0;
}

/* === FOOTER === */
.footer {
  background-color: var(--color-gray-dark);
  border-top: 2px solid var(--color-orange);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer p,
.footer a {
  color: var(--color-text);
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--color-orange-light);
  padding-left: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-medium);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: var(--color-gray-light);
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-gray-medium);
  border-radius: 50%;
  color: var(--color-orange);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* === BREADCRUMB === */
.breadcrumb-custom {
  background: var(--color-gray-dark);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb {
  background: transparent;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-orange);
}

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

.breadcrumb-item.active {
  color: var(--color-orange);
}

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--color-gray-dark) 0%, var(--color-primary) 100%);
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.page-header h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--color-text);
  position: relative;
  z-index: 2;
}

/* === 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);
  }
}

.fade-in {
  animation: fadeInUp 1s ease;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .product-image {
    height: 200px;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

/* === UTILITY CLASSES === */
.text-gold {
  color: var(--color-orange);
}

.text-orange {
  color: var(--color-orange);
}

.bg-darker {
  background-color: var(--color-gray-dark);
}

.border-gold {
  border-color: var(--color-orange) !important;
}

.border-orange {
  border-color: var(--color-orange) !important;
}

.shadow-gold {
  box-shadow: var(--shadow);
}

/* === LOADING ANIMATION === */
.loader {
  border: 4px solid var(--color-gray-medium);
  border-top: 4px solid var(--color-orange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Notification Badge */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #FF3B30;
    border-radius: 50%;
    border: 3px solid white;
    animation: notification-pulse 1.5s infinite;
}

@keyframes notification-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Tooltip */
.whatsapp-float::after {
    content: 'WhatsApp ile Bize Ulaşın';
    position: absolute;
    right: 70px;
    background: #1f2937;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover::after {
    opacity: 1;
    right: 75px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float::after {
        display: none;
    }
    
    .whatsapp-float::before {
        width: 16px;
        height: 16px;
        top: -3px;
        right: -3px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .whatsapp-float::after {
        background: #374151;
    }
}

/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
    .whatsapp-float {
        border: 2px solid white;
    }
}

/* Print - Hide Button */
@media print {
    .whatsapp-float {
        display: none !important;
    }
}
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: var(--secondary-color);
}

.contact-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 100%;
}

.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(--dark-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

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

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.kvkk-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.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;
}

/* Map & Additional Info */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Working Hours */
.working-hours {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.working-hours h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours h3 i {
    color: var(--primary-color);
}

.working-hours ul {
    list-style: none;
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.working-hours ul li:last-child {
    border-bottom: none;
}

.working-hours ul li span {
    color: var(--text-color);
}

.working-hours ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.emergency-contact {
    margin-top: 20px;
    padding: 20px;
    background: rgba(230, 126, 34, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.emergency-contact i {
    font-size: 24px;
    color: var(--primary-color);
}

.emergency-contact p {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-links h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links h3 i {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}