/* ARZTUR Website Styles - Modern Turkish Market Design */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #dc2626;
  --accent-color: #f59e0b;
  --dark-blue: #1e40af;
  --light-blue: #dbeafe;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

/* Hero WhatsApp Dropdown */
.hero-whatsapp-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.hero-whatsapp-dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

.hero-whatsapp-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.hero-whatsapp-dropdown:hover .hero-whatsapp-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-whatsapp-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--gray-800);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.hero-whatsapp-option:last-child {
  border-bottom: none;
}

.hero-whatsapp-option:hover {
  background-color: var(--light-blue);
  text-decoration: none;
}

.hero-whatsapp-option i {
  font-size: 2rem;
  color: #25d366;
  flex-shrink: 0;
}

.hero-whatsapp-option div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-whatsapp-option strong {
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-whatsapp-option span {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.cta-button {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-number {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 1rem;
}

.support-text {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: var(--white);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.tagline {
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 400;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 10px 0;
  z-index: 1001;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--gray-800);
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--light-blue);
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--gray-800);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-blue) 100%
  );
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-bg-image {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: blur(0px);
  transition: filter 0.3s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 58, 138, 0.8);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-actions .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.services .section-header,
.references .section-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  position: relative;
  z-index: 3;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-image {
  position: relative;
  margin: 2rem auto 0;
  text-align: center;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
}

.references-image {
  position: relative;
  margin: 2rem auto 0;
  text-align: center;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.services-img,
.references-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.services-image::before,
.references-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.3);
  z-index: 2;
}

.services-img:hover,
.references-img:hover {
  transform: scale(1.05);
}

/* Why Choose ARZTUR Section */
.why-choose {
  background-color: var(--gray-100);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.benefit-card h3 {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.benefit-card ul {
  list-style: none;
  text-align: left;
}

.benefit-card li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  position: relative;
  padding-left: 1.5rem;
}

.benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Services Section */
.services-overview {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
}

.service-card h3 {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.service-card li {
  padding: 0.4rem 0;
  color: var(--gray-600);
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-cta {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.service-cta:hover {
  background-color: var(--dark-blue);
}

.services-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--light-blue),
    rgba(245, 158, 11, 0.1)
  );
  border-radius: 12px;
}

.cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

/* About Section */
.about {
  background-color: var(--gray-100);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-text h2 {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission,
.vision {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.mission h3,
.vision h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.2);
  z-index: 2;
}

.image-placeholder {
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-section {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.team-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* References Section */
.references {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
}

.testimonial-author {
  margin-bottom: 1rem;
}

.testimonial-author strong {
  color: var(--gray-800);
  display: block;
}

.testimonial-author span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.service-tag {
  display: inline-block;
  background-color: var(--light-blue);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-areas {
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.service-areas h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-weight: 500;
}

.city-item i {
  color: var(--secondary-color);
}

.special-projects {
  font-style: italic;
  color: var(--gray-600);
  margin-top: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: var(--gray-100);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--gray-800);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.contact-details p {
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.simple-form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.simple-form-container h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.simple-form-container p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--gray-800);
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.simple-form input::placeholder,
.simple-form textarea::placeholder {
  color: var(--gray-500);
}

.simple-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.simple-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.simple-btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.contact-info-simple {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-simple .info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-simple .info-item:last-child {
  border-bottom: none;
}

.contact-info-simple .info-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-info-simple .info-item span {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* Phone Numbers */
.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-numbers span {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* WhatsApp Buttons Container */
.whatsapp-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* WhatsApp Floating Button Container */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border: none;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-container:hover .whatsapp-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WhatsApp Options Menu */
.whatsapp-options {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-option-header {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  padding: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--gray-800);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.whatsapp-option:last-child {
  border-bottom: none;
}

.whatsapp-option:hover {
  background-color: var(--light-blue);
  text-decoration: none;
}

.whatsapp-option i {
  font-size: 2rem;
  color: #25d366;
  flex-shrink: 0;
}

.whatsapp-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.whatsapp-option-info strong {
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 600;
}

.whatsapp-option-info span {
  color: var(--gray-600);
  font-size: 0.875rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* WhatsApp Button in Contact Info */
.whatsapp-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  color: var(--white);
}

.whatsapp-btn i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.whatsapp-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.whatsapp-phone {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Map Section */
.map-section {
  background-color: var(--gray-100);
  padding: 80px 0;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(30, 58, 138, 0.1);
  max-width: 350px;
  z-index: 10;
}

.location-info h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.4;
}

.location-info p i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
  text-decoration: none;
  color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-300);
}

.footer-contact i {
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--gray-600);
  padding-top: 1rem;
  text-align: center;
  color: var(--gray-400);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Top Bar Mobile */
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-bar .separator {
    margin: 0 0.25rem;
  }

  .contact-info {
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone-number {
    font-size: 0.85rem;
  }

  /* Hero Mobile */
  .hero-content {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }

  /* Images Mobile */
  .services-image {
    height: 300px;
  }

  .references-image,
  .about-image {
    height: 250px;
  }

  .services .section-header,
  .references .section-header {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
  }

  /* Navigation Mobile */
  .nav-content {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    padding: 1rem;
    display: block;
    border-bottom: 1px solid var(--gray-200);
  }

  .dropdown-content {
    position: static;
    display: block;
    box-shadow: none;
    background-color: var(--gray-100);
    margin-left: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero Mobile */
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Hero WhatsApp Dropdown Mobile */
  .hero-whatsapp-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 260px;
  }

  .hero-whatsapp-dropdown:hover .hero-whatsapp-menu {
    transform: translateX(-50%) translateY(0);
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Sections Mobile */
  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Benefits Grid Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* About Mobile */
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Cities Grid Mobile */
  .cities-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .simple-form-container {
    padding: 1.5rem;
  }

  .simple-form-container h3 {
    font-size: 1.3rem;
  }

  .contact-info-simple {
    padding: 1rem;
  }

  /* Map Mobile */
  .map-overlay {
    position: static;
    margin-top: 1rem;
    max-width: none;
    border-radius: 12px;
  }

  .map-container {
    border-radius: 15px;
  }

  .map-container iframe {
    height: 300px;
  }

  /* WhatsApp Mobile */
  .whatsapp-float-container {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-options {
    min-width: 260px;
    bottom: 65px;
  }

  .whatsapp-option {
    padding: 0.875rem;
  }

  .whatsapp-option i {
    font-size: 1.75rem;
  }

  .whatsapp-option-info strong {
    font-size: 0.875rem;
  }

  .whatsapp-option-info span {
    font-size: 0.8rem;
  }

  .whatsapp-btn {
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
  }

  .whatsapp-btn i {
    font-size: 1.5rem;
  }

  .whatsapp-name {
    font-size: 0.9rem;
  }

  .whatsapp-phone {
    font-size: 0.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 250px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/Error Messages */
.message {
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-weight: 500;
}

.message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .top-bar,
  .navbar,
  .hero-actions,
  .contact-form-container,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}
