@charset "UTF-8";
/* Haggle Hero — site styles */

    /* ====== Base Styles ====== */
	
:root {
  --primary-color: #1a1a1a;  /* original heading colour */
  --accent-color: #0078ff;
  --bg-color: #ffffff;
  --light-grey: #f5f5f5;
  --text-color: #333;
  --max-width: 1200px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
}


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

    body {
      font-family: "Poppins", sans-serif;
      color: var(--text-color);
      background: var(--light-grey);
      line-height: 1.6;
    }
	
	/* ====== Heading Refinement ====== */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: #444;  /* lighter neutral tone for headings */
  font-weight: 600;
}

/* Keep strong white text inside CTA section headings */
.cta-band h2 {
  color: #fff;
}

/* ====== Body Text Refinement ====== */
p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.2em;
}


/* ===== Section Text Refinement ===== */
.about p,
.features-section p,
.contact-left p,
.contact-form p,
.video-section p,
.footer-container p {
  color: #666;  /* softer grey for elegant readability */
}

/* ===== Strong Text Emphasis ===== */

strong {
  color: #000;
  font-weight: 600;
}


/* ====== Typography Rhythm ====== */
h1, h2, h3 {
  margin-bottom: 0.6em;  /* consistent space below headings */
  line-height: 1.25;     /* tighter and more deliberate */
}

section {
  margin-bottom: 4rem;   /* consistent rhythm between sections */
}


/* ===== CTA Section Overrides ===== */
.cta-band p {
  color: #fff;  /* ensure readability on blue background */
}

	
	html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* prevents section headers hiding behind sticky nav */
}


    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ====== Header ====== */
    header {
      width: 100%;
      background: var(--bg-color);
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 100;
      border-radius: 0 0 var(--radius) var(--radius);
    }
	
	/* --- Stack order fix: keep header/menu above the overlay --- */
header { z-index: 2000; }              /* was 100 */
.menu-overlay { z-index: 1500; }       /* sits below the header/menu */


    .nav-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
	
.logo {
  font-size: 1.65rem;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.6px;         /* tighter for visual balance */
  text-decoration: none;
  text-shadow: 0 0.5px 0 rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: baseline;          /* ensures dot aligns neatly with text */
}

.logo .dot {
  color: var(--accent-color);
  display: inline-block;
  transform: translateY(-1px);    /* nudges the dot up slightly for perfect visual centering */
  margin-left: 1px;               /* keeps spacing elegant and even */
  transition: color 0.25s ease;
}

.logo:hover {
  color: #999; /* slightly lighter black for a refined hover effect */
  transition: color 0.25s ease;
}


.logo:hover .dot {
  color: #005fcc; /* slightly darker blue on hover */
  transition: color 0.25s ease;
}

/* Match hero H1 branding to logo styling */
.brand-text {
  letter-spacing: -0.6px;
  color: #000;
  display: inline-flex;
  align-items: baseline;
}

.brand-text .dot {
  color: var(--accent-color);
  display: inline-block;
  transform: translateY(-1px);
  margin-left: 1px;
}


    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
	
    }

    nav a {
      font-weight: 500;
	  color: #aaa; /* softer grey so the logo stands out */
	  transition: color 0.25s ease;
    }

    nav a:hover {
      color: var(--accent-color);
    }
	
	/* Highlight the active section link */
nav a.active {
  color: var(--accent-color); /* same bright blue as hover */
  font-weight: 600;
}

    /* ====== Mobile Menu ====== */
	
	/* Menu overlay – base (all viewports) */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

	
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 26px;
      height: 3px;
      background: var(--primary-color);
      border-radius: 2px;
    }
	
	/* ===== Mobile Menu Toggle Animation ===== */
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When active (menu open), animate into an "X" */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


@media (min-width: 992px) {
  nav ul {
    gap: 2.75rem; /* ~44px between links */
  }
}

/* ===== Desktop / Default Nav Alignment Fix ===== */
@media (min-width: 1025px) {
  nav ul {
    position: static;
    flex-direction: row;
    justify-content: flex-end; /* ensures it aligns right */
    align-items: center;
    display: flex;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 1024px) {
  .menu-toggle { z-index: 2100; }      /* burger/X stays tappable above all */
  nav ul { z-index: 2001; }            /* menu list above overlay */
}

@media (max-width: 1024px) {
  nav ul.active {
    z-index: 1002; /* sits above overlay (1000) */
  }
}


 @media (max-width: 1024px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 2rem;
    background: var(--bg-color);
    flex-direction: column;
    width: 220px;
    border-radius: 0; /* flat, clean edge */
    box-shadow: var(--shadow);
    padding: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2001; /* ✅ sits clearly ABOVE the overlay (1000) */
  }

  nav ul.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 2002; /* keeps X button above menu */
  }

  .menu-overlay {
    z-index: 1000; /* overlay below menu and toggle */
  }
}


	

    /* ====== Hero Section ====== */
    .hero {
      max-width: var(--max-width);
      margin: 2rem auto 4rem;
      padding: 3rem 2rem;
      background: var(--bg-color);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1 1 400px;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    .hero-text p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      max-width: 500px;
    }

    .cta-button {
      display: inline-block;
      background: var(--accent-color);
      color: #fff;
      padding: 0.9rem 1.8rem;
      border-radius: var(--radius);
      font-weight: 600;
      transition: all 0.2s ease;
      box-shadow: 0 3px 8px rgba(0, 120, 255, 0.25);
    }

    .cta-button:hover {
      background: #005fcc;
      box-shadow: 0 4px 12px rgba(0, 120, 255, 0.35);
    }

    .hero-image {
      flex: 1 1 400px;
      text-align: right;
    }
	
	.hero-image img,
.about-image img {
  box-shadow: none; /* removes the drop shadow */
}

/* Put this *after* your existing .hero-image img / .about-image img rules */
.hero-image img,
.about-image img {
  box-shadow: none !important;  /* override earlier var(--shadow) */
}


    .hero-image img {
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
	
	.hero-image img {
  max-width: 95%;
  margin-right: auto;
}

/* ===== Tablet refinement for Hero (769px–992px) ===== */
@media (max-width: 992px) and (min-width: 769px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem 2rem;
  }

  .hero-text {
    flex: none;
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.05rem;
    margin: 0 auto 1.5rem;
    max-width: 95%;
  }

  .cta-button {
    margin: 0 auto;
  }

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

  .hero-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    gap: 2rem; /* consistent vertical rhythm */
  }

  .hero-text {
    flex: none;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.05rem;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }

  .cta-button {
    margin: 0 auto; /* centre the button horizontally */
    display: inline-block;
  }

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

  .hero-image img {
    max-width: 95%;
    margin: 0 auto;
  }
}

/* ===== Intro Highlight (Zig-Zag) ===== */
.intro-highlight {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Left column: centre the icon/image */
.intro-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* If using Font Awesome icon */
.intro-image i {
  font-size: clamp(8rem, 10vw, 11rem);
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.95;
  transform: translateY(4px); /* gentle nudge for visual centering */
}


/* If using an image instead */
.intro-image img {
  max-width: 95%;
  border-radius: var(--radius);
  box-shadow: none;
}

/* Right column: centre heading + copy */
.intro-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.intro-text p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px; /* keeps lines readable */
}

/* Intro Highlight — desktop balance tweaks */
@media (min-width: 993px) {
  .intro-highlight {
    /* wider side padding so neither column kisses the edges */
    padding-inline: clamp(32px, 5vw, 72px);
  }

  .intro-container {
    /* grid gives nicer control of gutters vs flex */
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;       /* icon/text balance */
    column-gap: clamp(32px, 5vw, 80px);       /* generous centre gutter */
    align-items: center;
  }

  .intro-image {
    justify-self: end;                         /* keeps icon visually aligned with centre */
  }

  .intro-text {
    justify-self: start;
    max-width: 640px;                          /* readable line length */
    padding-right: clamp(16px, 4vw, 56px);     /* right-side safety gutter */
    text-align: left;                          /* reads cleaner than centred here */
  }

  .intro-text p {
    max-width: 60ch;                           /* keeps paragraphs tidy */
  }
}


/* Responsive stacking for tablet & mobile */
@media (max-width: 992px) {
  .intro-container {
    flex-direction: column;
    gap: 2rem;
  }
  .intro-image i { font-size: 4.75rem; }
  .intro-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .intro-image i { font-size: 3.75rem; }
  .intro-text h2 { font-size: 1.7rem; }
} -->


	
	/* ====== About Section ====== */
 /* === Balanced About Section (Matches Hero Proportions) === */

.about {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 3rem 2rem; /* match hero section exactly */
  background: var(--bg-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem; /* balanced gap like hero */
  flex-wrap: nowrap; /* prevents stacking on wide screens */
}

.about-text {
  flex: 1 1 50%;
  max-width: 560px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.7;
}

.about-image {
  flex: 1 1 50%;
  text-align: right;
}

.about-image img {
  max-width: 92%;
  height: auto;
  margin-right: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: none !important; /* keep your clean look */
}

/* === Responsive layout (mobile / tablet) === */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

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

  .about-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* --- SEO stamp (subtle, non-shouty) --- */
.seo-stamp {
  display: inline-block;
  background: rgba(0,120,255,0.06);
  border: 1px solid rgba(0,120,255,0.18);
  color: #0f3a73;            /* muted blue text */
  font-weight: 600;          /* not bold-bold */
  letter-spacing: 0.2px;     /* light tracking */
  text-transform: none;      /* mixed case, not ALL CAPS */
  padding: 8px 12px;
  border-radius: 10px;
  line-height: 1.25;
  margin: 0 0 14px 0;
}

/* keep it quieter than the H2 */
.about .seo-stamp { font-size: 0.95rem; }

/* mobile spacing */
@media (max-width: 768px) {
  .seo-stamp { margin-bottom: 12px; }
}


  
  /* ====== Features Section ====== */
.features-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.features-section h2 {
  font-size: 2.4em;
  margin-bottom: 50px;
  color: #333;
}

  
.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.8em;
  margin-bottom: 15px;
}

/* Icon colors */
.feature-icon.design i { color: #ffb400; }     /* yellow/orange */
.feature-icon.webdev i { color: #0077ff; }     /* blue */
.feature-icon.mobile i { color: #1abc9c; }     /* teal */
.feature-icon.ecommerce i { color: #e74c3c; }  /* red */
.feature-icon.seo i { color: #9b59b6; }        /* purple */
.feature-icon.support i { color: #2ecc71; }    /* green */
.feature-icon.content i { color: #ff6f61; }    /* coral */
.feature-icon.security i { color: #34495e; }   /* dark slate */

.feature-box h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}

.feature-box p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Video Section Styles ===== */
  .video-section {
    max-width: var(--max-width, 1200px);
    margin: 0 auto 4rem;
	margin-top: 4rem; /* add breathing space above video section */
    padding: 3rem 2rem;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color, #fff);
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow, 0 4px 12px rgba(0,0,0,.08));
    text-align: center;
  }
  .video-inner h2 {
    font-size: 2rem;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: .5rem;
  }
  .video-intro {
    color: var(--text-color, #333);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .video-card {
    margin: 0 auto;
    max-width: 960px;
    background: var(--light-grey, #f5f5f5);
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow, 0 4px 12px rgba(0,0,0,.08));
    padding: 14px;
  }

  /* Responsive 16:9 wrapper (works everywhere) */
  .video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: var(--radius, 12px);
    background: #000;
  }
  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .video-fallback {
    font-size: .95rem;
    color: #555;
    margin-top: .5rem;
  }
  .video-fallback a {
    color: var(--accent-color, #0078ff);
    text-decoration: none;
  }
  .video-fallback a:hover { text-decoration: underline; }

  @media (max-width: 600px) {
    .video-section { padding: 2.2rem 1.4rem; }
	
	/* Force line break for the fallback link on mobile */
	.video-fallback a {
    display: block; /* pushes the YouTube link to its own line */
    margin-top: 0.3rem; /* small breathing room */
  }
  }

/* ===== CTA Band Styles ===== */
  .cta-band {
    padding: 70px 20px;
	margin-bottom: 4rem; /* add spacing below the CTA section */
    background: linear-gradient(
      135deg,
      var(--accent-color, #0078ff) 0%,
      #4ca7ff 100%
    );
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Keep strong text white inside the CTA section */
.cta-band strong {
  color: #fff;
  font-weight: 600;
}

  .cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 48px 30px;
    text-align: center;
    backdrop-filter: blur(4px);
  }

  .cta-inner h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .cta-inner p {
    font-size: 1.05rem;
    opacity: 0.95;
    margin: 0 auto 24px;
    max-width: 780px;
  }

  .cta-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-primary,
  .cta-secondary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    will-change: transform;
  }

  .cta-primary {
    background: #fff;
    color: var(--accent-color, #0078ff);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  }
  .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  }
  
  .cta-button {
  font-size: 1rem;        /* ensures same size as other buttons */
  font-weight: 600;       /* bold and consistent */
}


  .cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
  .cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .cta-inner {
      padding: 36px 20px;
    }
    .cta-inner h2 {
      font-size: 1.7rem;
    }
    .cta-actions {
      gap: 10px;
    }
    .cta-primary, .cta-secondary {
      width: 100%;
      text-align: center;
    }
  }
  
/* ===== FAQ Section ===== */
.faq-section {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-intro {
  max-width: 650px;   /* keeps lines readable */
  margin: 0 auto 2rem;
  text-align: center;
}

.faq-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.faq-intro p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.faq-item {
  background: #f9fafc;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  border: 1px solid #e5e8f0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ff8a00; /* warm orange — readable, bold, brand-friendly */
}

.faq-item p {
  font-size: 0.98rem;
  margin-bottom: 0; /* avoid extra spacing */
}

/* Stack nicely on small screens */
@media (max-width: 768px) {
  .faq-section {
    padding: 2.5rem 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
  
/* ===== Contact / Offer Section (Side-by-Side Final) ===== */
.contact-section {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem; /* increased spacing between columns */
  align-items: start;
}

/* --- Left Column --- */
.contact-left {
  text-align: left;
}

.contact-left h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

/* Heading divider */
.heading-divider {
  width: 70px;
  height: 4px;
  background: #0078ff;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.contact-left p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 1.1rem;
  line-height: 1.65;
  word-spacing: normal;
}

.contact-left a {
  color: #0078ff;
  text-decoration: none;
  font-weight: 500;
}

.contact-left a:hover {
  text-decoration: underline;
}

.contact-name {
  white-space: nowrap;   /* keeps Max Andrews on one line */
  font-weight: 600;      /* slightly bolder for authority */
}


.contact-icon {
  font-size: 3.5em;
  color: #0078ff;
  margin-top: 1.5rem;
}

/* ===== Premium Contact Text Refinement ===== */
.contact-left p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  max-width: 95%;
}

.contact-left p strong {
  color: #000;
  font-weight: 600;
}

/* Highlighted Price Tag */
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #0078ff, #005fcc);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 120, 255, 0.25);
  margin: 1.2rem 0;
  font-size: 1.15rem;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.price-tag::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #0078ff;
}


/* --- Right Column (Form) --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  color: #333;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 2px solid #ddd;                /* thicker border for definition */
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  background-color: #fafafa;             /* soft background contrast */
  transition: border-color 0.25s ease, 
              box-shadow 0.25s ease, 
              background-color 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0078ff;                 /* your blue accent */
  box-shadow: 0 0 0 4px rgba(0, 120, 255, 0.12);
  background-color: #fff;                /* brightens on focus */
}



.submit-offer {
  align-self: flex-start;
  padding: 0.8rem 1.8rem;
  font-size: 1rem; /* consistent with CTA buttons */
  font-weight: 600;
  background-color: #0078ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 120, 255, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.submit-offer:hover {
  background-color: #005fcc;
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-icon {
    font-size: 3em;
    margin-top: 1rem;
  }
  
  .contact-icon {
    text-align: center;
    width: 100%;
  }

  .submit-offer {
    align-self: center;
  }
}

/* ===== Footer Styles ===== */
.site-footer {
  position: relative;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #444;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.domain-note {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.domain-note i {
  color: #0078ff;
  margin-right: 0.4rem;
}


.escrow-note {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #444;
}

.escrow-note i {
  color: #0078ff;
  margin-right: 0.4rem;
}

.footer-divider {
  width: 80px;
  height: 3px;
  background: #0078ff;
  border-radius: 4px;
  margin: 0.8rem auto 1.2rem;
  opacity: 0.8;
}

/* ===== Social Share Section ===== */
.social-share {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-share p {
  font-weight: 600;
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0.8rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0078ff;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 120, 255, 0.25);
}

.social-icons a:hover {
  background-color: #005fcc;
  transform: translateY(-3px);
}

/* Copy Link Button Styling */
.copy-link {
  background-color: #0078ff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 120, 255, 0.25);
}

.copy-link:hover {
  background-color: #005fcc;
  transform: translateY(-3px);
}

/* Confirmation Text */
.copy-confirmation {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #0078ff;
  font-weight: 500;
  transition: opacity 0.3s ease;
}



.copyright {
  font-size: 0.95rem;
  color: #999;
}

/* ===== Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  text-align: left;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #0078ff;
}

.modal-content p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
  transition: color 0.2s ease;
}

.close:hover { color: #0078ff; }

.footer-links {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #0078ff;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #005fcc;
  text-decoration: underline;
}


/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #0078ff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  background-color: #005fcc;
  transform: translateY(-3px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .site-footer {
    padding: 2rem 1rem 3rem;
  }

  .footer-divider {
    width: 60px;
  }

  .escrow-note {
    font-size: 0.95rem;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }
}