@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Premium Color Palette */
  --primary: #8a8987;       /* Stone Gray (lacivert yerine) */
  --primary-light: #a3a2a0; /* Light Stone Gray */
  --primary-dark: #5e5e5c;  /* Dark Stone Gray */
  --secondary: #f0bb4a;     /* Warm Gold / Amber Accent (turuncu yerine) */
  --secondary-hover: #dbab3b;
  --accent: #b0afad;        /* Soft Gray */
  --light-bg: #f5f5f4;      /* Clean Warm Background */
  --white: #ffffff;
  --dark-slate: #2d2d2c;    /* Charcoal for rich texts */
  --text-main: #3a3a39;
  --text-muted: #70706e;
  --border: #e4e4e3;
  --success: #2a9d8f;       /* Emerald for actions */
  --danger: #dbab3b;        /* Warn/Gold */
  --warning: #f0bb4a;

  /* Box Shadows */
  --shadow-sm: 0 2px 4px rgba(138, 137, 135, 0.05);
  --shadow-md: 0 4px 12px rgba(138, 137, 135, 0.08);
  --shadow-lg: 0 10px 25px rgba(138, 137, 135, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(138, 137, 135, 0.08);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

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

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.5s ease forwards;
}

.float-effect {
  animation: float 4s ease-in-out infinite;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section-bg-white {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-title);
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-danger {
  background-color: var(--danger);
  color: var(--white);
}

.btn-danger:hover {
  background-color: #d65b40;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.w-full {
  width: 100%;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }

@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Form inputs */
.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(19, 64, 116, 0.1);
}

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

/* Badge styles */
.badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-sineklik {
  background-color: rgba(244, 162, 97, 0.15);
  color: #c96b27;
}

.badge-cambalkon {
  background-color: rgba(42, 157, 143, 0.15);
  color: #1c7268;
}

.badge-pimapen {
  background-color: rgba(19, 64, 116, 0.15);
  color: var(--primary-light);
}

/* ==========================================================================
   HEADER & NAVBAR STYLING
   ========================================================================== */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-right {
  display: flex;
  gap: 20px;
}

.top-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.top-contact-link:hover {
  color: var(--white);
}

.top-contact-link.whatsapp {
  color: #25D366;
  font-weight: 600;
}

.main-nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
}

.nav-btn {
  padding: 8px 16px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-btn:hover, .nav-btn.active {
  background-color: rgba(19, 64, 116, 0.08);
  color: var(--primary);
}

.nav-btn.admin-link {
  color: #e76f51;
  background-color: rgba(231, 111, 81, 0.08);
}

.nav-btn.admin-link:hover, .nav-btn.admin-link.active {
  background-color: rgba(231, 111, 81, 0.15);
  color: #e76f51;
}

.nav-btn.admin-login-btn {
  color: var(--text-muted);
}

.nav-btn.admin-login-btn:hover {
  color: var(--primary);
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--danger);
  border-radius: 50%;
  transition: var(--transition);
}

.logout-btn:hover {
  background-color: rgba(231, 111, 81, 0.08);
}

.mobile-menu-toggle {
  display: none;
  color: var(--primary);
}

.mobile-drawer {
  display: none;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .top-bar-left {
    display: none;
  }
  .mobile-drawer {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 999;
  }
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-nav-btn {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    font-family: var(--font-title);
    font-weight: 600;
    border-radius: var(--radius-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-nav-btn:hover, .mobile-nav-btn.active {
    background-color: var(--light-bg);
  }
  .mobile-nav-btn.admin-link {
    color: #e76f51;
    background-color: rgba(231, 111, 81, 0.08);
  }
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.footer {
  background-color: var(--primary-dark);
  color: #cddcf0;
  padding: 80px 0 30px 0;
  border-top: 5px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #abc0d6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-sub-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-sub-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links button {
  color: #abc0d6;
  font-size: 0.9rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.footer-links button:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #abc0d6;
}

.admin-footer-btn {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.admin-footer-btn:hover {
  color: var(--secondary);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
   HOME PAGE STYLING
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

/* Hero Background Slideshow CSS */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 29, 0.75) 0%, rgba(15, 15, 14, 0.88) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(244, 162, 97, 0.18);
  color: var(--secondary);
  border: 1px solid rgba(244, 162, 97, 0.3);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 30px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge-icon {
  animation: pulse-slow 2s infinite;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  color: #abc0d6;
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 700px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
  background-color: rgba(11, 37, 69, 0.6);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(244, 162, 97, 0.4);
}

.emergency-blink {
  width: 10px;
  height: 10px;
  background-color: #e76f51;
  border-radius: 50%;
  animation: pulse-slow 1s infinite;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Category cards */
.quick-categories-section {
  margin-top: -60px;
  z-index: 5;
  position: relative;
  padding-top: 0;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(141, 169, 196, 0.15);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(11, 37, 69, 0.15);
}

.category-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.sineklik-bg { background-color: rgba(244, 162, 97, 0.12); }
.pimapen-bg { background-color: rgba(19, 64, 116, 0.12); }
.cambalkon-bg { background-color: rgba(42, 157, 143, 0.12); }

.category-icon-text {
  font-size: 1.8rem;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-light);
  transition: var(--transition);
}

.category-card:hover .category-link {
  color: var(--secondary-hover);
}

/* Regions Section */
.regions-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 15px;
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.region-tag {
  background-color: var(--light-bg);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.region-icon {
  color: var(--secondary-hover);
}

.regions-image-placeholder {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  min-height: 350px;
  display: flex;
  align-items: center;
}

.bursa-map-box h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.map-badge-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.map-stat-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.8rem;
  color: #abc0d6;
}

.map-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.success-icon {
  color: #2a9d8f;
}

/* Welcome Section */
.welcome-wrapper {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.welcome-inner h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.welcome-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #abc0d6;
  margin-bottom: 30px;
}

/* Features */
.feature-card {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  border: 1px solid var(--border);
}

.feature-icon {
  color: var(--secondary-hover);
  background-color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.comment {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.customer-info {
  border-top: 1px solid var(--light-bg);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}

.customer-info strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.customer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 50px 0;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-left h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-left p {
  color: #abc0d6;
}

@media (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   ABOUT PAGE STYLING
   ========================================================================== */
.page-banner {
  background-color: var(--primary-dark);
  background-image: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  border-bottom: 3px solid var(--secondary);
}

.banner-container h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-container p {
  color: #abc0d6;
  font-size: 1.1rem;
}

.about-image-side {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-logo-card h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.about-logo-card p {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 40px;
}

.years-badge {
  display: inline-flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--primary);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.years-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--secondary-hover);
}

.years-txt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-text-side .sub-title {
  display: block;
  font-weight: 700;
  color: var(--secondary-hover);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.about-text-side h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.about-text-side p {
  margin-bottom: 20px;
}

.vision-mission-section {
  background-color: var(--light-bg);
}

.vision-card, .mission-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.card-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(19, 64, 116, 0.08);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.vision-card h3, .mission-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.value-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.value-icon {
  background-color: rgba(244, 162, 97, 0.12);
  color: var(--secondary-hover);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES & GALLERY FILTERING STYLING
   ========================================================================== */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--primary-light);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-emoji {
  font-size: 1.6rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .read-more-btn {
  color: var(--secondary-hover);
}

.trust-service-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.trust-icon {
  color: var(--secondary-hover);
  flex-shrink: 0;
}

.trust-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.bullet-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.bullet-item svg {
  color: #2a9d8f;
}

@media (max-width: 768px) {
  .trust-service-flex {
    flex-direction: column;
    text-align: center;
  }
  .bullet-points {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MODAL POPUP STYLING
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 37, 69, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 5;
}

.modal-header h3 {
  font-size: 1.4rem;
  color: var(--primary);
}

.modal-close {
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--danger);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.service-modal-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-category-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-trust-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
}

.service-full-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  white-space: pre-line;
}

.modal-actions-box {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-top: 15px;
}

.modal-actions-box h4 {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.modal-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .modal-ctas .btn {
    width: 100%;
  }
}

/* ==========================================================================
   GALLERY PAGE STYLING
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: #ddd;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 37, 69, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-title);
  transition: var(--transition);
}

.zoom-icon {
  transform: scale(0.6);
  transition: var(--transition);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay-hover {
  opacity: 1;
}

.gallery-card:hover .zoom-icon {
  transform: scale(1);
}

.gallery-info {
  padding: 15px;
}

.gallery-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-hover);
  text-transform: uppercase;
}

.no-items-message {
  text-align: center;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.lightbox-modal-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lightbox-large-img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background-color: #0b0f17;
}

.lightbox-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */
.contact-description {
  margin-bottom: 30px;
  font-size: 1rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card-item {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  gap: 15px;
}

.contact-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.phone-icon { background-color: var(--primary-light); }
.whatsapp-icon { background-color: #25D366; }
.mail-icon { background-color: var(--accent); }
.clock-icon { background-color: var(--secondary); }

.contact-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.contact-card-body a {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.contact-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-form-side {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-success-box {
  text-align: center;
  padding: 40px 20px;
}

.form-success-box h3 {
  font-size: 1.5rem;
  margin: 15px 0 10px 0;
  color: var(--success);
}

.form-success-box p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.maps-wrapper {
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--secondary);
}

@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ADMIN PANEL STYLING
   ========================================================================== */
.admin-login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px 20px;
}

.login-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.login-header h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.login-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.password-input-wrapper {
  position: relative;
}

.toggle-password-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
}

.error-text {
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.admin-dashboard-container {
  padding: 40px 0;
}

.admin-flex {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.admin-sidebar {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: sticky;
  top: 130px;
}

.sidebar-header {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.sidebar-header h3 {
  font-size: 1.2rem;
}

.sidebar-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.sidebar-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
  border-radius: var(--radius-md);
  text-align: left;
  transition: var(--transition);
}

.sidebar-nav-btn:hover {
  background-color: var(--light-bg);
}

.sidebar-nav-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.unread-count {
  background-color: var(--danger);
  color: var(--white);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: auto;
}

.admin-logout-btn {
  width: 100%;
}

.admin-content-area {
  min-height: 500px;
}

.tab-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.tab-header h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.tab-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.admin-form {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.form-section-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  padding-left: 10px;
  color: var(--primary);
}

.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 30px 0;
}

.service-entry-form {
  background-color: #fafbfc;
  border-style: dashed;
  border-width: 2px;
}

.form-actions-flex {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.services-admin-list, .admin-gallery-list {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.services-admin-list h3, .admin-gallery-list h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.admin-table th {
  background-color: var(--light-bg);
  font-weight: 700;
  color: var(--primary);
}

.table-truncate-text {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-muted);
}

.table-actions {
  display: flex;
  gap: 8px;
}

.btn-action {
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-action:hover {
  transform: scale(1.2);
}

/* Admin Gallery Grid */
.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.admin-gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--light-bg);
}

.admin-gallery-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.admin-gallery-info {
  padding: 10px;
}

.admin-gallery-info h4 {
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-gallery-delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(231, 111, 81, 0.9);
  color: var(--white);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  transition: var(--transition);
}

.admin-gallery-delete-btn:hover {
  background-color: var(--danger);
  transform: scale(1.1);
}

/* Messages Admin Styles */
.messages-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message-admin-card {
  padding: 25px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.unread-card {
  border-left: 5px solid var(--primary-light);
  background-color: rgba(19, 64, 116, 0.02);
}

.message-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.message-sender-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-right: 15px;
}

.message-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.message-card-contact {
  font-size: 0.85rem;
  color: var(--text-main);
  background-color: var(--light-bg);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.message-card-contact a {
  color: var(--primary-light);
  font-weight: 600;
}

.separator {
  margin: 0 10px;
  color: var(--border);
}

.message-content-text {
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-bg);
  padding-bottom: 15px;
}

.message-card-actions {
  display: flex;
  gap: 12px;
}

/* System Reset Styles */
.alert-warning-box {
  background-color: rgba(231, 111, 81, 0.08);
  border-left: 5px solid var(--danger);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.alert-warning-box h3 {
  color: var(--danger);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.alert-warning-box p {
  font-size: 0.9rem;
  color: var(--text-main);
}

.system-reset-box {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.danger-text {
  color: var(--danger) !important;
}

@media (max-width: 992px) {
  .admin-flex {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
  }
  .gallery-admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-admin-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Custom CMS Elements Styles --- */

/* Dropdown Menu (Desktop) */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.8rem;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(11, 37, 69, 0.15);
  border: 1px solid var(--border);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  display: block;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--secondary-hover);
  padding-left: 25px;
}

/* Mobile Dropdown Subitems */
.mobile-dropdown-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-dropdown-subitems {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 2px solid var(--border);
  margin: 5px 0 10px 10px;
  gap: 5px;
}

.mobile-sub-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-sub-btn:hover,
.mobile-sub-btn:active {
  color: var(--secondary-hover);
  padding-left: 18px;
}

/* Regions Manager */
.regions-manager-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 15px;
  background-color: var(--light-bg);
}

.regions-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.region-edit-tag {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.delete-region-btn {
  background: var(--danger);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0;
  transition: var(--transition);
}

.delete-region-btn:hover {
  background-color: #d64f2a;
  transform: scale(1.1);
}

.add-region-flex {
  display: flex;
  gap: 10px;
}

.add-region-flex .form-control {
  margin-bottom: 0;
}

/* Switch UI for Visibility */
.switch-label {
  user-select: none;
}

.switch-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* WhatsApp Floating Widget Styles */
.whatsapp-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-body);
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.pulse-ring {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: pulse-ring-anim 2s infinite;
  pointer-events: none;
  box-sizing: border-box;
}

@keyframes pulse-ring-anim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  width: 280px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 15px;
  box-shadow: 0 8px 30px rgba(11, 37, 69, 0.15);
  margin-bottom: 15px;
  position: relative;
  border: 1px solid var(--border);
  transform-origin: bottom right;
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.online-indicator {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.online-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.whatsapp-tooltip strong {
  color: var(--primary);
  font-family: var(--font-title);
}

.whatsapp-tooltip p {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.4;
  margin: 0;
}

.tooltip-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: var(--transition);
}

.tooltip-close:hover {
  color: var(--danger);
}

@media (max-width: 768px) {
  .whatsapp-widget-container {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-tooltip {
    width: 250px;
  }
}

/* Usta Çağır Floating Button */
.usta-widget-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-body);
}

.usta-float-btn {
  height: 60px;
  padding: 0 20px;
  background-color: var(--secondary); /* Warm orange */
  color: var(--primary-dark);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(240, 187, 74, 0.4);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 0.95rem;
}

.usta-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  background-color: var(--white);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(240, 187, 74, 0.6);
}

.usta-icon {
  animation: pulse-icon 2s infinite;
}

.usta-pulse-ring {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: 30px;
  animation: pulse-ring-anim 2s infinite;
  pointer-events: none;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .usta-widget-container {
    bottom: 20px;
    left: 20px;
  }
  .usta-float-btn {
    height: 50px;
    padding: 0 15px;
    font-size: 0.85rem;
    border-radius: 25px;
  }
  .usta-pulse-ring {
    border-radius: 25px;
  }
}

