/* =========================================
   GLOBAL VARIABLES & UTILITIES
   ========================================= */
:root {
  --sp-cyan: #3dbfea;
  /* Cyan highlight color from image */
  --sp-bg-light: #f0f7fc;
  /* Very faint blue background */
  --sp-text-dark: #222222;
  --sp-text-gray: #666666;
}

body {
  font-family: "Inter", sans-serif;
  /* Use your global font */
  color: var(--sp-text-gray);
  line-height: 1.6;
}

.text-cyan {
  color: #7fb401 !important;
}

.fw-bold {
  font-weight: 700 !important;
}
  
.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 30px;
}

.sp-light-blue-bg {
  background-color: var(--sp-bg-light);
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
  color: #ffffff;
}

.section-title {
  color: var(--sp-text-dark);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.bold-title {
  color: var(--sp-text-dark);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

img.img-fluid {
  max-width: 100%;
  height: auto;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.rug-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.rug-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.hero-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1.5);
  margin-left: 0 !important;
}

.hero-sub-text {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 1.5);
  margin-left: 0 !important;
}

.hero-btn-wrapper {
  display: flex;
  gap: 15px;
  margin-left: 0 !important;
  justify-content: center;
}

.btn-cyan {
  background-color: var(--sp-cyan);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cyan:hover {
  background-color: #2da1ca;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  color: var(--sp-text-dark);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background-color: #f1f1f1;
}

@media (max-width: 767px) {
  .rug-hero-section {
    padding: 80px 0;
    text-align: center;
  }

  .rug-hero-content {
    margin: 0 auto;
    padding: 0 15px;
  }

  .hero-btn-wrapper {
    justify-content: center;
  }

  .hero-main-title {
    font-size: 32px;
  }
}

/* =========================================
   2. SERVICES SECTION
   ========================================= */
.services-section {
  background: linear-gradient(180deg, rgba(165, 199, 240, 0.39) 99.99%);
  /* Light bluish background from image */
  padding: 60px 0;
}

.services-header {
  text-align: center;
  /* Centered as per image */
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 10px;
}

.text-cyan {
  color: #007bff !important;
  /* Adjust blue/cyan to match your branding */
}

.services-header p {
  color: #444;
  font-size: 18px;
}

/* Grid Layout */
.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

/* Home-style offerings grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offering-card {
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.offering-card:hover {
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.08);
  transform: translateY(-3px);
  border-color: #cce0ff;
}

.offering-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.offering-card img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  display: block;
}

/* Card Styling */
.service-card {
  background: #ffffff;
  border-radius: 15px;
  /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image-box {
  width: 100%;
  height: 200px;
  /* Fixed height for consistency */
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-text-content {
  padding: 25px;
  text-align: left;
}

.service-title {
  font-size: 20px;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Container for the button */
.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The button reset */
.expand-toggle-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  /* Space between text and circle */
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
}

.expand-toggle-btn:hover {
  opacity: 0.8;
}

/* The "View All Services" Text */
.btn-text {
  font-size: 24px;
  font-weight: 600;
  color: #001a33;
  /* Dark navy/black from image */
  font-family: sans-serif;
}

/* The White Circular Icon */
.btn-icon {
  background-color: #ffffff;
  color: #007bff;
  /* Blue arrow color */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow from image */
  transition: transform 0.3s ease;
}

/* Rotation effect when expanded (optional logic for your JS) */
.expand-toggle-btn[data-expanded="true"] .btn-icon {
  transform: rotate(180deg);
}

.learn-more-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.learn-more-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid-container {
    grid-template-columns: 1fr;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
           3. DISCOUNT BANNER
           ========================================= */
.about-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-flex-container {
  display: flex;
  align-items: center;
  /* Vertically centers the image with the text */
  gap: 60px;
  /* Space between image and text */
}

/* Image Styling */
.about-image-wrapper {
  flex: 1;
  /* Takes up 50% width */
}

.about-main-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 20px;
  /* Matching the rounded corners in your image */
  display: block;
}

/* Content Styling */
.about-content {
  flex: 1;
  /* Takes up 50% width */
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: sans-serif;
}

.text-blue {
  color: #007bff;
  /* Matching the blue from your previous section */
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .about-flex-container {
    flex-direction: column;
    /* Stacks image on top of text on mobile */
    text-align: center;
  }

  .about-image-wrapper {
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 32px;
  }
}

/* =========================================
           4. TRUST SECTION
           ========================================= */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f0f4f8;
  /* Matches the light blue bg */
  color: #333;
}

.service-banner {
  padding: 60px 20px;
  text-align: center;
}

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

/* Typography */
.top-title {
  color: #0061d5;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.main-title span {
  color: #0061d5;
}

/* Grid Layout */
.grid-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-card {
  flex: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Borders for middle column */
.border-sides {
  border-left: 1px solid #c8d6e5;
  border-right: 1px solid #c8d6e5;
}

/* Icons */
.icon-circle {
  width: 50px;
  height: 50px;
  border: 1px solid #0061d5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0061d5;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.feature-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 50px;
  /* Keeps buttons aligned */
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  width: 100%;
  max-width: 200px;
}

.btn-filled {
  background-color: #0061d5;
  color: white;
  border: 1px solid #0061d5;
}

.btn-filled:hover {
  background-color: #004bb1;
}

.btn-outline {
  background-color: transparent;
  color: #0061d5;
  border: 1px solid #0061d5;
}

.btn-outline:hover {
  background-color: #0061d5;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-wrapper {
    flex-direction: column;
  }

  .feature-card {
    padding: 40px 0;
  }

  .border-sides {
    border-left: none;
    border-right: none;
    border-top: 1px solid #c8d6e5;
    border-bottom: 1px solid #c8d6e5;
  }
}

/* =========================================
           5. CONTACT FORM SECTION
========================================= */

.contact-container {
  padding: 80px 0;
}

.contact-box {
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  padding: 50px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  width: 100%;
}

.form-group.full-width {
  grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dddddd;
  padding: 10px 0;
  font-size: 14px;
  font-family: var(--font-family);
  outline: none;
  background: transparent;
}

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

.contact-form .btn-submit {
  background-color: #58b2e0;
  color: #000000;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #29c3d4;
  margin-bottom: 30px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block h4 {
  font-size: 16px;
  color: var(--sp-text-dark);
  margin: 0 0 5px 0;
}

.info-block p {
  color: #29c3d4;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================
           RESPONSIVE DESIGN
           ========================================= */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .hero-main-title {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .discount-banner {
    padding: 40px 20px;
  }
}

.rug-discount-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  /* text-align: center; */
  color: #ffffff;
  display: flex;
  align-items: left;
  justify-content: center;
  margin-left: 40px;
  margin-right: 40px;
  border-radius: 30px;
}

.discount-content {
  max-width: 1160px;
  margin: 0 auto;
  /* padding: 0 20px; */
  align-items: left;
  justify-content: center;
}

.discount-badge {
  display: inline-block;
  background-color: #58b2e0;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 14px;
}

.discount-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.discount-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0;
}

@media (max-width: 768px) {
  .rug-discount-banner {
    padding: 60px 0;
  }

  .discount-title {
    font-size: 32px;
  }

  .discount-content p {
    font-size: 16px;
  }
}

/* --- Final CTA Section Wrapper --- */
.sd-final-cta-section {
  background-color: #81ba00;
  /* Theme green background */
  padding: 60px 20px;
}

/* --- The White Card --- */
.final-cta-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 50px;
  position: relative;
  /* Needed to anchor the absolute decorative circles */
  overflow: hidden;
  /* Keeps circles inside the rounded corners if they touch edges */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Decorative Circles --- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background-color: #81ba00;
  opacity: 0.3;
  /* Makes them light green */
  z-index: 1;
  /* Keeps them behind the text */
}

.circle-tl {
  width: 18px;
  height: 18px;
  top: 15px;
  left: 15px;
}

.circle-br-large {
  width: 32px;
  height: 32px;
  bottom: 15px;
  right: 15px;
}

.circle-br-small {
  width: 14px;
  height: 14px;
  bottom: 25px;
  right: 55px;
  /* Pushed slightly left of the large circle */
}

/* --- Card Content Layout --- */
.final-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  /* Keeps text above the decorative circles */
}

/* --- Text Styling --- */
.final-cta-text {
  flex-grow: 1;
}

.final-cta-text h3 {
  color: #81ba00;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.final-cta-text p {
  color: #111111;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}

/* --- Solid Green Button --- */
.final-cta-action {
  flex-shrink: 0;
  /* Prevents the button area from squishing */
}

.btn-cta-solid {
  display: inline-block;
  background-color: #81ba00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 30px;
  /* Pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #81ba00;
}

.btn-cta-solid:hover {
  background-color: #6a9900;
  border-color: #6a9900;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
  .final-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .final-cta-card {
    padding: 35px 20px;
  }

  .final-cta-text h3 {
    font-size: 24px;
  }

  .circle-br-small {
    right: 50px;
    /* Adjust slightly for mobile padding */
  }
}

.cta-banner {
  background-image: url("/img/main-service-page/cta.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  font-family: "Arial Narrow", Arial, sans-serif;
  position: relative; /* ← required for overlay */
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 37%);
}

.cta-content {
  position: relative; /* ← sits above overlay */
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.btn-call {
  display: inline-block;
  background-color: #2b86b7;
  /* Blue color matching the button */
  color: white;
  padding: 12px 45px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 25px;
  /* Creates the rounded pill button shape */
  transition: background-color 0.3s ease;
}

.btn-call:hover {
  background-color: #24739d;
  /* Slightly darker shade for hover */
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }
}

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

.contact-page {
  background-color: var(--bg-page);
  color: var(--text-dark);
}

.section-padding {
  padding: 80px 0;
}

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

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

/* --- 1. Header Banner (Matches Blog Detail Style) --- */
.contact-header-banner {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 35px 0;
}

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

.contact-page-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-breadcrumb {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-breadcrumb a {
  color: #7fb401;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-breadcrumb a:hover {
  color: var(--primary);
}

.contact-breadcrumb span {
  color: #000000;
}

/* --- 2. Main Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  /* Info smaller, Form wider */
  gap: 60px;
  align-items: start;
}

/* Left Column: Info */
.sp-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.sd-heading {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}

.sd-heading span {
  color: var(--primary);
}

.contact-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #e4f6ff;
  color: #2b86b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* .contact-icon:hover {
    background-color: #29C3D4;
} */
.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-text strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-text span,
.contact-text a {
  color: #2b86b7;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: #2b86b7;
}

/* Social Icons */
.contact-socials {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.contact-socials h3 {
  font-size: 18px;
  margin: 0 0 20px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #7fb401;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #7fb401;
  color: #fff;
  border-color: #58b2e0;
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Right Column: Modernized Form Layout --- */
.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  /* Slightly more rounded */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  /* Softer, deeper shadow */
  border: 1px solid #f0f0f0;
}

.contact-form-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 25px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

/* Subtle accent line under "Send Us A Message" */
.contact-form-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #2b86b7;
  border-radius: 2px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

/* New Input Style: Boxed with Background */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  /* Boxed look */
  background: #f9fbfc;
  /* Very light blue-grey tint */
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: none;
  /* Keeps layout clean */
}

/* Focus state for better accessibility */
.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #58b2e0;
  box-shadow: 0 0 0 4px rgba(88, 178, 224, 0.1);
}

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

/* Updated Button Layout */
.form-actions {
  margin-top: 10px;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2b86b7;
  color: #fff;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 164, 205, 0.4);
}

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

/* --- 3. Map Section --- */
.contact-map-section {
  padding-bottom: 80px;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}
.contact-text {
  color: #000000;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-card {
    padding: 30px;
  }

  .contact-header-flex {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .contact-page-title {
    font-size: 26px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-padding {
    padding: 50px 0;
  }
}

/* =========================================
   CONTACT PAGE — REDESIGNED TO MATCH MOCKUP
   ========================================= */

/* Section wrapper */
.contact-main {
  background-color: #ffffff;
}

/* Section heading */
.contact-section-heading {
  font-size: 32px;
  font-weight: 800;
  color: #2b86b7;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-section-heading span {
  color: #2b86b7;
}

/* Two-column grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

/* ---- LEFT COLUMN: Info Cards ---- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.contact-info-card {
  border: 1.5px solid #2b86b7;
  border-radius: 14px;
  padding: 22px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.contact-info-card:hover {
  box-shadow: 0 6px 20px rgba(43, 134, 183, 0.12);
}

.contact-info-card-link {
  color: #2b86b7;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-info-card-link:hover {
  color: #1a6a96;
}

/* Working hours card */
.contact-info-card--hours {
  border-color: #2b86b7;
}

.hours-label {
  font-size: 12px;
  font-weight: 700;
  color: #2b86b7;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hours-value {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* ---- RIGHT COLUMN: Form ---- */
.contact-form-col {
  /* No card wrapper — form sits cleanly on white */
}

/* Alert messages */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.alert--success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.alert--error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

/* 2-column form row */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

/* Field group */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

/* Labels */
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #c8dff0;
  border-radius: 10px;
  background: #ffffff;
  font-family: inherit;
  font-size: 15px;
  color: #222;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2b86b7;
  box-shadow: 0 0 0 4px rgba(43, 134, 183, 0.1);
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aab8c5;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  min-height: 130px;
}

/* Field-level error */
.field-error {
  color: #d9534f;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* ---- Action Buttons ---- */
.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
}

/* Outline button — Send Message */
.btn-send-message {
  padding: 13px 34px;
  border: 2px solid #2b86b7;
  border-radius: 50px;
  background: transparent;
  color: #2b86b7;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn-send-message:hover {
  background: #2b86b7;
  color: #fff;
}

/* Filled button — Call Now */
.btn-call-now {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  background: #1a4f72;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 2px solid #1a4f72;
}

.btn-call-now:hover {
  background: #143d58;
  border-color: #143d58;
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-send-message,
  .btn-call-now {
    text-align: center;
    width: 100%;
  }

  .contact-section-heading {
    font-size: 26px;
  }
}
