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

body {
  background-color: #ffffff;
  color: #333333;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: relative;
  /* flex-wrap: wrap is key to allowing the menu to drop down on mobile */
  flex-wrap: wrap;
}

/* LOGO + SITENAME */
.sitename {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sitename a {
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6e0a1e;
}

.logo {
  height: 50px;
  width: auto;
}

/* HAMBURGER BUTTON (Hidden on Desktop) */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #6e0a1e;
  cursor: pointer;
  padding: 5px;
}

/* MENU BOX (Desktop default) */
.menu {
  background: #f5f5f5;
  padding: 14px 28px;
  border-radius: 12px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #b78b55;
}

/* -------- HEADER RESPONSIVENESS (Mobile) -------- */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  /* Show the hamburger button */
  .hamburger {
    display: block;
  }

  /* Adjust Site Name size for smaller screens */
  .sitename a {
    font-size: 24px;
  }
  .logo {
    height: 40px;
  }

  /* Mobile Menu Logic */
  .menu {
    display: none; /* HIDDEN INITIALLY */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  /* This class is added by JS to show the menu */
  .menu.active {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .menu a {
    display: block;
    padding: 12px;
    width: 100%;
    color: #6e0a1e;
    font-weight: 500;
  }

  /* Add hover bg for easier mobile tapping */
  .menu a:hover {
    background-color: #f0f0f0;
    border-radius: 0;
  }
}


/* -------- HERO SECTION -------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

  /* Background Image */
  background-image: url("images/herobg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #6e0a1e;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background-color: #2e3440;
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #6e0a1e;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* ========================
   STATISTICS BAR 
   ======================== */
.stats-bar {
  /* Direct image link - No overlay */
  background-image: url("images/statusbar.png");

  /* Standard background settings */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Existing spacing */
  padding: 60px 20px;
  border-bottom: 1px solid #dcdcdc;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-item h2 {
  font-size: 42px;
  color: #6e0a1e;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #555;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: #999;
}

/* ========================
   ABOUT US SECTION 
   ======================== */
.about-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.section-title {
  font-size: 38px;
  color: #6e0a1e;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
  text-align: justify;
}

.btn-dark {
  display: inline-block;
  background-color: #2e3440;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-dark:hover {
  background-color: #6e0a1e;
}

.about-video {
  flex: 1;
  margin-top: 10px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}

.about-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
  .stat-divider {
    width: 80px;
    height: 1px;
  }
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-video {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ========================
   SERVICES & WHY CHOOSE US
   ======================== */
.services-section,
.why-choose-us-section {
  padding: 80px 20px;
}

.services-section {
  background-color: #f4f6f9;
}

.why-choose-us-section {
  background-color: #ffffff;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.content-left {
  flex: 1;
}

.arrow-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.arrow-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #444;
  font-size: 16px;
  line-height: 1.5;
}

.arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #2e3440;
  font-size: 12px;
  top: 4px;
}

.content-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    gap: 40px;
  }
  .content-right {
    width: 100%;
  }
}

/* ========================
   CATALOGS SECTION
   ======================== */
.catalogs-section {
  background-color: #f0f2f5;
  padding: 60px 20px;
}

.catalogs-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* MAIN SECTION TITLE (e.g., "Our Catalogs") */
.centered-title {
  text-align: center;
  margin-bottom: 50px;
  color: #6e0a1e;
  font-size: 38px;
  font-weight: 700;
}

/* --- NEW FIX: For links inside the main section title --- */
.centered-title a, 
.section-title a {
  color: inherit;       /* Forces link to be Maroon (#6e0a1e) instead of Blue */
  text-decoration: none; /* Removes the underline */
  transition: color 0.3s ease;
}

.centered-title a:hover,
.section-title a:hover {
  color: #4a0513;       /* Optional: darker maroon on hover */
}
/* ------------------------------------------------------- */

/* THE GRID */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* INDIVIDUAL ITEM */
.catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  text-decoration: none; 
  color: inherit; 
}

.catalog-item:hover {
  transform: translateY(-5px);
}

/* Images */
.catalog-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Product Titles (h3) */
.catalog-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #6e0a1e; 
  margin: 0;
}

/* --- FIX: For links inside product cards (e.g., "Dresses") --- */
.catalog-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.catalog-item h3 a:hover {
  color: #4a0513;
}
/* ------------------------------------------------------------ */

/* Catalog item meta details */
.item-meta {
  text-align: center;
  margin-top: 6px;
  color: #000000;
  font-size: 14px;
}
.item-meta p { margin: 2px 0; }
.item-meta .meta-label { color: #000000; font-weight: 600; }


/* VIEW FULL CATALOGS CARD */
.view-all-card {
  height: 100%;
  background-color: #6e0a1e;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(110, 10, 30, 0.3);
  cursor: pointer;
  min-height: 300px;
  text-decoration: none;
}

.view-all-card span {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-card .arrow {
  font-size: 28px;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.view-all-card:hover .arrow {
  transform: translateX(10px);
}

.view-all-card:hover {
  background-color: #5a0818;
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr; /* Single column on small screens for better legibility */
    gap: 10px;
  }

  /* Keep the home page catalog section at two columns on small screens */
  .catalog-grid.home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .view-all-card {
    min-height: 150px;
  }
}
/* ========================
   TICKER SECTION
   ======================== */
.ticker-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.scroller-viewport {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.scroller-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}

.scroller-track:hover {
  animation-play-state: running;
}

.ticker-logo {
  height: 90px;
  width: 360px;
  object-fit: contain;
  padding: 0 25px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .scroller-viewport { width: 95%; }
  .ticker-logo { width: 250px; height: 60px; padding: 0 20px; }
}

/* ========================
   APPRECIATION SECTION
   ======================== */
.appreciation-section {
  background-color: #f0f2f5;
  padding: 100px 20px;
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 300px;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.8s ease-in-out;
}

.testimonial-slide.active {
  display: flex;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 24px;
  font-style: italic;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
}

.client-name {
  color: #6e0a1e;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.client-company {
  color: #777;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ============================
   CONTACT FORM SECTION
   ============================ */
.contact-form-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-container .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.contact-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6e0a1e;
  box-shadow: 0 0 0 3px rgba(110, 10, 30, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px 32px;
  background-color: #2e3440;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #6e0a1e;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
}

/* -------- FOOTER -------- */
footer {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 24px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #444;
  flex-wrap: wrap;
  gap: 12px;
}

footer a,
footer div {
  color: #444;
  text-decoration: none;
  font-weight: normal;
}

.privacy-policy {
  font-weight: normal;
}

.privacy-policy a:hover {
  color: #b78b55;
}

.sitename-footer {
  font-weight: 600;
  letter-spacing: 1px;
  color: #6e0a1e;
  font-size: 18px;
}

.copyright {
  font-size: 14px;
  color: #666;
}

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

/* ========================
   BLOG LAYOUT
   ======================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.header .logo {
  font-size: 22px;
  font-weight: 700;
  color: #6e0a1e;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  color: #2e3440;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.navbar a:hover,
.navbar a.active {
  background: #6e0a1e;
  color: #ffffff;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.blog-hero {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.blog-hero-text {
  padding: 40px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #6e0a1e;
  margin-bottom: 8px;
}

.blog-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #2e3440;
  margin-bottom: 0;
}

.blog-hero .excerpt {
  color: #555555;
  line-height: 1.6;
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.blog-hero-image {
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  margin-top: 32px;
}

.blog-cta {
  display: inline-block;
  background: #6e0a1e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.blog-cta:hover {
  background: #520817;
  transform: translateY(-1px);
}

.blog-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 80px;
  color: #2e3440;
  line-height: 1.8;
}

.blog-body h2 {
  color: #6e0a1e;
  margin: 32px 0 12px;
  line-height: 1.3;
}

.blog-body h3 {
  color: #8a1f35;
  margin: 22px 0 10px;
  font-size: 20px;
}

.blog-body p {
  margin-bottom: 14px;
}

.blog-body ul,
.blog-body ol {
  margin: 0 0 18px 20px;
  padding-left: 0;
}

.blog-body li {
  margin-bottom: 10px;
}

.blog-cta-banner {
  margin: 44px 0 10px;
  padding: 24px;
  background: #f8f4f2;
  border: 1px solid #efe6e2;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-cta-banner h3 {
  margin: 0;
  color: #2e3440;
}

.blog-cta-banner p {
  margin: 0;
  color: #555555;
}

.comparison-table {
  display: grid;
  gap: 0;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid #e8e8e8;
  background: #ffffff;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row div {
  padding: 14px 16px;
  border-right: 1px solid #e8e8e8;
}

.table-row div:last-child {
  border-right: none;
}

.table-header {
  background: #f7f2ef;
  font-weight: 700;
  color: #2e3440;
}

@media (max-width: 768px) {
  .blog-hero-text {
    padding: 30px 20px 0;
  }

  .blog-hero h1 {
    font-size: 28px;
  }

  .blog-hero-image {
    min-height: 280px;
    margin-top: 24px;
  }

  .blog-body {
    padding: 40px 16px 60px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row div {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }

  .table-row div:last-child {
    border-bottom: none;
  }
}

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

/* Contact Hero Section (white header style) */
.contact-hero {
  background-color: #ffffff;
  position: relative;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-hero-overlay {
  text-align: center;
  color: #333333;
  max-width: 900px;
}

.contact-hero-overlay h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #6e0a1e;
}

.contact-hero-overlay p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

/* Contact Main Section */
.contact-main {
  background-color: #ffffff;
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Contact Info Column */
.contact-info-column {
  flex: 1;
}

.contact-info-column h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6e0a1e;
  margin-bottom: 16px;
}

.contact-info-column > p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Contact Details */
.contact-details {
  margin-bottom: 50px;
}

.detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.detail-item .icon {
  font-size: 28px;
  line-height: 1.4;
  flex-shrink: 0;
}

.detail-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #6e0a1e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  margin: 0;
}

.detail-text p {
  font-size: 16px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.detail-text a {
  font-size: 16px;
  color: #6e0a1e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.detail-text a:hover {
  color: #4a0513;
  text-decoration: underline;
}

/* Social Media */
.social-media {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.social-icon:hover {
  transform: translateY(-2px);
}

/* Contact Form Column */
.contact-form-column {
  flex: 1;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-column h3 {
  font-size: 24px;
  font-weight: 700;
  color: #6e0a1e;
  margin-bottom: 28px;
  margin: 0 0 28px 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6e0a1e;
  box-shadow: 0 0 0 3px rgba(110, 10, 30, 0.1);
}

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

/* Map Section */
.map-section {
  background-color: #f0f2f5;
  padding: 80px 20px;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.map-wrapper iframe {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 1000;
}

.whatsapp-float:hover {
  filter: brightness(1.05);
  transform: translateY(-50%) scale(1.03);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 20px;
    min-height: 300px;
  }

  .contact-hero-overlay h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .contact-hero-overlay p {
    font-size: 16px;
  }

  .contact-main {
    padding: 60px 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info-column h2 {
    font-size: 28px;
  }

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

  .social-media {
    gap: 12px;
  }

  .social-media a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .map-section {
    padding: 60px 20px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .whatsapp-float {
    right: 12px;
    width: 52px;
    height: 52px;
  }
}