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

body {
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color, #faf9f6);
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  background-color: var(--header-color, #ffffff);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  /* Added overflow hidden to contain decorative image */
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-header {
    height: 6rem;
    padding: 1.5rem 3rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  /* Pushed logo even more to the left on mobile */
  margin-right: auto;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .header-logo {
    padding-right: 2rem;
  }
}

.header-logo img,
.header-logo-img,
.header-logo .custom-logo {
  height: 3rem !important;
  width: auto !important;
  max-height: 3rem !important;
  object-fit: contain !important;
  display: block !important;
}

@media (min-width: 768px) {
  .header-logo img,
  .header-logo-img,
  .header-logo .custom-logo {
    height: 5rem !important;
    max-height: 5rem !important;
  }
}

/* Added decorative header image styles - hidden by default, visible only on large screens */
.header-decorative {
  display: none;
  /* Changed flex value and positioning to center image properly on smaller screens */
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  /* Removed max-width restriction for full screen */
  margin: 0 auto;
  margin-right: 2rem; /* Added right margin to create space between decorative image and language buttons */
  height: 100%;
}

/* Updated decorative image to use actual header-decorative.png with proper sizing */
/* significantly increased decorative image size to match logo prominence */
.header-decorative-img {
  /* Fixed centering with auto margins */
  width: 100%;
  /* Removed max-width restriction to allow full width on large screens */
  height: 80px;
  max-height: 80px;
  object-fit: contain;
  object-position: center;
  opacity: 0.1;
  margin: 0 auto;
  display: block;
}

.lang-buttons {
  display: flex;
  /* Reduced gap on mobile to prevent EN button from overflowing */
  gap: 0.375rem;
  flex-shrink: 0;
  /* Added margin-left to move buttons away from edge */
  margin-left: auto;
  padding-left: 1rem; /* Added left padding to create more space from decorative image */
}

@media (min-width: 768px) {
  .lang-buttons {
    gap: 0.5rem;
  }
}

.lang-btn {
  /* Reduced padding on mobile to fit buttons better */
  padding: 0.5rem 0.75rem;
  background-color: var(--button-color, #f3f4f6);
  /* Dil seçenekleri için metin rengini çok daha koyu siyah yaptık */
  color: #000000;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  /* Added min-width to prevent button squishing */
  min-width: 2.5rem;
}

@media (min-width: 768px) {
  .lang-btn {
    padding: 0.5rem 1rem;
  }
}

.lang-btn:hover {
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.lang-btn.active {
  background-color: #c70d0d;
  color: white;
}

/* Main Content */
/* Dramatically reduced padding on all screen sizes to bring hexagons closer to header */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  min-height: calc(100vh - 8rem);
  /* Prevent horizontal overflow on all screen sizes */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@media (min-width: 768px) {
  .main-content {
    padding: 0.75rem 2rem;
    min-height: calc(100vh - 10rem);
  }
}

/* Further reduced padding on large desktops and centered content - hexagons very close to header */
@media (min-width: 1280px) {
  .main-content {
    padding: 1.5rem 2rem !important;
    min-height: calc(100vh - 10rem);
    justify-content: flex-start !important;
  }
}

/* Hexagon container and grid layout */
.hexagon-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
  overflow: visible;
  position: relative;
  /* Ensure container never exceeds viewport width */
  box-sizing: border-box;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1023px) {
  .hexagon-container {
    max-width: 100%;
    padding: 0.5rem;
  }
}

@media (max-width: 767px) {
  .hexagon-container {
    padding: 0.25rem;
  }
}

.hexagon-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  position: relative;
  /* Prevent grid from causing overflow */
  max-width: 100%;
}

@media (min-width: 768px) {
  .hexagon-grid {
    gap: 2rem;
  }
}

.hex-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  /* Ensure rows fit within viewport */
  max-width: 100%;
}

@media (min-width: 768px) {
  .hex-row {
    gap: 2rem;
  }
}

/* Redesigned side content to match reference images with proper curved arrows */
.side-content {
  display: none;
}

/* Hide side content completely on small desktops (1024-1279px) for better responsive layout */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hexagon-container {
    max-width: 900px;
    gap: 0;
    padding-top: 1rem;
  }

  .main-content {
    padding: 1rem 2rem;
  }

  /* Completely hide side content on problematic screen sizes */
  .side-content {
    display: none !important;
  }
}

/* Show side content with horizontal text on medium+ desktops (1280px+) */
/* Fixed layout for full screen - smaller hexagons, reduced gaps, horizontal text, closer to header */
@media (min-width: 1280px) {
  /* Show decorative header image on large screens (1280px and above) */
  .header-decorative {
    display: flex;
  }

  /* removed old max-height constraint, using new 80px height above */

  .hexagon-container {
    max-width: 1600px;
    /* Reduced gap to bring arrows closer to hexagons */
    gap: 0.75rem;
    margin-bottom: 0 !important;
    margin-top: 1rem !important;
    align-items: flex-start;
  }

  .side-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: 350px;
    flex-shrink: 1;
    padding: 1rem 0;
    /* Hexagonlarla tam hizalamak için yükseklik artırıldı */
    height: 550px;
  }

  .side-content.left {
    align-items: flex-end;
    /* Reduced padding to bring arrows closer */
    padding-right: 0;
  }

  .side-content.right {
    align-items: flex-start;
    /* Reduced padding to bring arrows closer */
    padding-left: 0;
  }

  .content-item {
    position: absolute;
    display: flex;
    align-items: center;
    max-width: 350px;
    /* Aktif olmayan metinler için opacity 0.25 */
    opacity: 0.25;
    transition: all 0.4s ease;
    /* Removed all margin overrides - gap handles spacing now */
    margin: 0;
  }

  /* Sol taraf hizalama - Üst hexagon (service 1) */
  .side-content.left .content-item[data-service="1"] {
    margin-top: 0;
  }

  /* Sol taraf hizalama - Orta hexagon (service 3) */
  .side-content.left .content-item[data-service="3"] {
    margin-top: 50px;
  }

  /* Sol taraf hizalama - Alt hexagon (service 5) */
  .side-content.left .content-item[data-service="5"] {
    margin-top: 100px;
  }

  /* Sağ taraf hizalama - Üst hexagon (service 2) */
  .side-content.right .content-item[data-service="2"] {
    margin-top: 0;
  }

  /* Sağ taraf hizalama - Orta hexagon (service 4) */
  .side-content.right .content-item[data-service="4"] {
    margin-top: 50px;
  }

  /* Sağ taraf hizalama - Alt hexagon (service 6) */
  .side-content.right .content-item[data-service="6"] {
    margin-top: 100px;
  }

  /* Hexagonlarla tam hizalanması için top değerleri güncellendi */
  .content-item:nth-child(1) {
    top: 20px;
  }

  .content-item:nth-child(2) {
    top: 190px;
  }

  .content-item:nth-child(3) {
    top: 360px;
  }

  /* Aktif metinler tam siyah ve opak olacak */
  .content-item.active {
    opacity: 1 !important;
  }

  /* Active metinlerin rengini tam siyah yapıyoruz */
  .content-item.active .content-text {
    color: #000000 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
  }

  /* Non-active items should be semi-transparent */
  .content-item:not(.active) {
    opacity: 0.25;
  }

  .content-item:not(.active) .content-text {
    color: #000000;
  }

  .side-content.left .content-item {
    flex-direction: row;
    justify-content: flex-end;
  }

  .side-content.right .content-item {
    flex-direction: row;
    justify-content: flex-start;
  }

  /* Fixed text to be HORIZONTAL and properly aligned - removed all vertical text styles */
  .content-text {
    font-size: 0.7rem !important;
    line-height: 1.6 !important;
    /* Removed hardcoded color - handled by active/not-active states above */
    text-align: left !important;
    flex: 1;
    max-width: 280px;
    padding: 0.5rem;
    /* HORIZONTAL text only - no vertical writing mode */
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
    transform: none !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    display: block !important;
  }

  .arrow-container {
    display: flex;
    flex-shrink: 0;
    /* Reduced width to bring arrows closer to hexagons */
    width: 60px;
    height: 50px;
    align-items: center;
    justify-content: center;
  }

  .side-content.left .arrow-container {
    /* Removed margin to eliminate gap */
    margin-left: 0;
  }

  .side-content.right .arrow-container {
    /* Removed margin to eliminate gap */
    margin-right: 0;
  }

  .curved-arrow {
    /* Reduced size to match smaller arrow container */
    width: 60px;
    height: 50px;
    overflow: visible;
  }

  .curved-arrow path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
  }

  .curved-arrow polygon {
    fill: #dc2626;
    transition: fill 0.3s ease;
  }

  /* Changed from :hover to .active class for arrow color changes */
  .content-item.active .curved-arrow path {
    stroke: #b91c1c;
  }

  .content-item.active .curved-arrow polygon {
    fill: #b91c1c;
  }
}

@media (min-width: 1400px) {
  .hexagon-container {
    /* Reduced gap further for larger screens */
    gap: 1rem;
  }

  .side-content {
    width: 400px;
    /* Removed min-height, using gap instead */
    /* Increased height for larger screens */
    height: 500px;
  }

  /* Adjusted positioning for larger screens */
  .content-item:nth-child(1) {
    top: 0;
  }

  .content-item:nth-child(2) {
    top: 167px;
  }

  .content-item:nth-child(3) {
    top: 334px;
  }

  .content-item {
    max-width: 400px;
  }

  /* Hexagon hover ile aktif olan metinlerin rengini siyah yapıyoruz - 1400px için */
  .content-item.active .content-text {
    color: #000000 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
  }

  .content-text {
    max-width: 320px;
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 0.75rem;
  }

  .arrow-container {
    /* Slightly larger for bigger screens */
    width: 70px;
  }

  .curved-arrow {
    width: 70px;
  }
}

/* Extra large screens get full width */
@media (min-width: 1600px) {
  .side-content {
    width: 450px;
    /* More gap for extra large screens */
    /* More height for extra large screens */
    height: 550px;
  }

  /* Updated positioning to use data-service attributes instead of nth-child for consistency */
  /* Left side positioning for extra large screens */
  .content-item[data-service="1"] {
    margin-top: 0;
  }

  .content-item[data-service="3"] {
    margin-top: 80px;
  }

  .content-item[data-service="5"] {
    margin-top: 160px;
  }

  /* Right side positioning for extra large screens */
  .content-item[data-service="2"] {
    margin-top: 0;
  }

  .content-item[data-service="4"] {
    margin-top: 80px;
  }

  .content-item[data-service="6"] {
    margin-top: 160px;
  }

  /* 1600px+ için aktif metin rengini siyah yapıyoruz */
  .content-item.active .content-text {
    color: #000000 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
  }

  .content-item {
    max-width: 450px;
  }

  .content-text {
    max-width: 360px;
    font-size: 0.9rem;
    padding: 1rem;
  }

  .arrow-container {
    width: 80px;
  }

  .curved-arrow {
    width: 80px;
  }
}

/* Slightly reduced hexagon sizes on full screen for better fit */
/* Hexagon Shape */
.hexagon,
.hex-button {
  width: 6.5rem;
  height: 6.5rem;
  min-width: 6.5rem;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  /* Added flex properties to perfectly center icons inside hexagons */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 480px) {
  .hexagon,
  .hex-button {
    width: 7.5rem;
    height: 7.5rem;
    min-width: 7.5rem;
    padding: 1.25rem 1rem;
  }
}

@media (min-width: 768px) {
  .hexagon,
  .hex-button {
    width: 10rem;
    height: 10rem;
    min-width: 10rem;
    padding: 2rem 1.5rem;
  }
}

/* Reduced hexagon size on large screens for better layout */
@media (min-width: 1024px) {
  .side-content {
    opacity: 0.3;
  }

  .content-item {
    opacity: 0.3;
  }

  .content-item:hover,
  .content-item.active {
    opacity: 1 !important;
  }

  /* Active metinlerin rengini tam siyah yapıyoruz */
  .content-item.active .content-text {
    color: #000000 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
  }

  /* Non-active items should be semi-transparent */
  .content-item:not(.active) {
    opacity: 0.25;
  }

  .content-item:not(.active) .content-text {
    color: #6b7280;
  }

  .hexagon,
  .hex-button {
    width: 9.5rem;
    height: 9.5rem;
    min-width: 9.5rem;
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1280px) {
  .hexagon,
  .hex-button {
    width: 9rem;
    height: 9rem;
    min-width: 9rem;
    padding: 1.75rem 1.25rem;
  }

  /* Hexagon hover ile aktif olan metinlerin rengini siyah yapıyoruz - 1280px için */
  .content-item.active .content-text {
    color: #000000 !important;
    opacity: 1 !important;
    font-weight: 600 !important;
  }
}

/* Improved hex-button text wrapping for all screen sizes */
.hex-button {
  position: relative;
  overflow: hidden;
  background-color: var(--hexagon-color, #dc2626);
  color: var(--hexagon-text-color, #1a1a1a);
  box-shadow: 0 4px 6px -1px rgba(107, 114, 128, 0.3), 0 2px 4px -1px rgba(107, 114, 128, 0.2);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  /* Centered content with flex */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}

/* Metin hover'ında hexagon büyütme efekti ekleniyor */
.hex-button.text-hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.hex-button.text-hover .hex-icon {
  filter: brightness(1.1);
}

@media (min-width: 480px) {
  .hex-button {
    font-size: 0.75rem;
    line-height: 1.3;
    padding: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hex-button {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .hex-button {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 1.25rem;
  }
}

.hex-button:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(107, 114, 128, 0.4), 0 4px 6px -2px rgba(107, 114, 128, 0.3);
  background-color: #ffffff;
}

/* Fixed hex-icon sizing to fit within hexagon clip-path boundaries */
/* Increased icon sizes from 75%/70%/65% to 130% for better visibility */
.hex-icon {
  /* Perfect centering with absolute positioning inside flex container */
  width: 130%;
  height: 130%;
  max-width: 130%;
  max-height: 130%;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 2;
}

@media (min-width: 768px) {
  .hex-icon {
    width: 130%;
    height: 130%;
    max-width: 130%;
    max-height: 130%;
  }
}

@media (min-width: 1024px) {
  .hex-icon {
    width: 130%;
    height: 130%;
    max-width: 130%;
    max-height: 130%;
  }
}

/* Ensure SVG icons inside hexagons are large and prominent */
.hex-button svg g {
  /* Icons will be scaled relative to viewBox */
  transform-origin: center;
}

/* Adjusted center hexagon size to match proportions */
/* Center hexagon made larger to emphasize logo */
.center-hex {
  background-color: white;
  box-shadow: 0 10px 20px rgba(107, 114, 128, 0.25);
  /* Center hex is 1.5x larger than other hexagons */
  width: 9.75rem;
  height: 9.75rem;
  min-width: 9.75rem;
}

@media (min-width: 480px) {
  .center-hex {
    width: 11.25rem;
    height: 11.25rem;
    min-width: 11.25rem;
  }
}

@media (min-width: 768px) {
  .center-hex {
    width: 15rem;
    height: 15rem;
    min-width: 15rem;
  }
}

@media (min-width: 1024px) {
  .center-hex {
    width: 14.25rem;
    height: 14.25rem;
    min-width: 14.25rem;
  }
}

@media (min-width: 1280px) {
  .center-hex {
    width: 13.5rem;
    height: 13.5rem;
    min-width: 13.5rem;
  }
}

/* Fixed center hexagon logo sizing and display */
.center-logo {
  width: 6rem;
  height: auto;
  object-fit: contain;
  /* Removed conflicting !important flags and inline visibility for Edge/Safari compatibility */
  display: block;
  max-width: 85%;
  max-height: 85%;
  opacity: 1;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .center-logo {
    width: 6.75rem;
  }
}

@media (min-width: 768px) {
  .center-logo {
    width: 10.5rem;
  }
}

@media (min-width: 1024px) {
  .center-logo {
    width: 11.25rem;
  }
}

/* Footer */
.site-footer {
  background-color: var(--footer-bg-color, #ffffff);
  color: var(--footer-text-color, #1a1a1a);
  border-top: 1px solid #e5e7eb;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 5rem;
}

.footer-content {
  max-width: 48rem;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--footer-title-color, #1a1a1a);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--footer-description-color, #6b7280);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Added trademark text styling */
.footer-trademark {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #9ca3af;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

/* Added bottom divider line after trademark text */
.footer-trademark-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  /* Updated margins to 1.5rem top and 2rem bottom */
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* Increased spacing between footer divider and contact info */
.footer-divider {
  border-top: 1px solid #e5e7eb;
  /* Increased padding-top to add more breathing room above contact info */
  padding-top: 4rem;
  margin-top: 3rem;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.footer-contact {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-contact {
    text-align: left;
  }
}

.footer-address {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-address {
    text-align: right;
  }
}

.contact-name,
.address-label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contact-phone,
.contact-email,
.address-text {
  margin-bottom: 0.125rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  /* Smooth transitions for better user experience */
  transition: all 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal-content {
  /* Improved background with better contrast */
  background: #ffffff;
  color: #1a1a1a;
  /* Increased padding for better spacing and readability */
  padding: 3rem;
  /* Larger border radius for modern look */
  border-radius: 16px;
  /* Better responsive sizing */
  max-width: min(95vw, 600px);
  width: 100%;
  position: relative;
  /* Enhanced shadow */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-close {
  position: absolute;
  /* Right aligned close button with good spacing */
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  /* Better tap target */
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Smooth transition */
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #1a1a1a;
  /* Subtle rotation on hover */
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  /* Added padding-right to prevent overlap with close button */
  padding-right: 2rem;
}

.modal-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2rem;
}

.modal-btn {
  /* Centered close button using auto margins */
  display: block;
  margin: 0.5rem auto 0;
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Better tap target */
  min-width: 120px;
}

.modal-btn:hover {
  background-color: #b91c1c;
  /* Slight lift on hover */
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Added WhatsApp floating button styles */
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  display: block;
}

/* Responsive WhatsApp button size */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
