:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #fcc104;
  --black: #000000;
  --charcoal: #333333;
  --grey-light: #F8F9FA;
  --white: #FFFFFF;
  --font-main: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
}

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

/* Header */
header {
  background-color: var(--white);
  padding: 15px 0;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* Added shadow for sticky feel */
}

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

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: #d4ae37;
  /* Lighter gold for tagline as seen in screenshot */
  display: block;
  margin-top: 5px;
}

.header-phone {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #f6f3e7;
  overflow: hidden;
  height: 100vh;
  /* Full screen height */
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('images/banner-image.png') no-repeat right center;
  background-size: cover;
  /* Cover entire section */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
  /* Explicitly align text to left */
  margin-left: 0;
  /* Ensure no auto margins */
}

.hero h1 {
  font-size: 3.5rem;
  /* Increased size to match screenshot prominence */
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: left;
}

.hero .enquire-btn {
  display: inline-block;
  padding: 18px 50px;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
}

/* Content Split Section */
.section-with-form {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.main-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1rem;
  color: #999;
  margin-bottom: 50px;
  display: block;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.info-item img {
  width: 50px;
  margin-right: 30px;
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.5);
  /* Make icons look black/proper like screenshot */
}

.info-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.form-box {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.form-header {
  background: var(--black);
  color: var(--white);
  padding: 20px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}

.form-body {
  padding: 30px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.submit-btn {
  width: 100%;
  background: var(--secondary-gold);
  color: var(--white);
  border: none;
  padding: 15px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-underline {
  width: 70px;
  height: 4px;
  background: var(--primary-gold);
  margin-top: 10px;
}

.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 25px;
  padding: 10px 5px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.service-card {
  position: relative;
  flex: 0 0 calc(33.333% - 17px);
  /* Shows 3 items exactly as requested */
  background: var(--white);
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border-radius: 4px;
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card .img-container {
  width: 100%;
  aspect-ratio: 4/3;
  /* Returning to original ratio from screenshot */
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-title-box {
  background: #ffffff;
  padding: 15px 5px;
  /* Reduced padding for narrow cards */
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.service-card h3 {
  color: #000000;
  text-transform: uppercase;
  font-size: 1.1rem;
  /* Returning to consistent size */
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: var(--grey-light);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}



.why-card {
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}

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

.why-card h4 {
  font-weight: 800;
  text-transform: uppercase;
  margin: 25px 0 15px;
  font-size: 1rem;
  color: #000;
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* SEO Footer Links */
.seo-links {
  padding: 40px 0;
  background: var(--grey-light);
  text-align: center;
  border-top: 1px solid #eee;
}

.seo-links h5 {
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #222;
}

.seo-links p {
  font-size: 0.9rem;
  color: #777;
  line-height: 2.2;
  max-width: 1000px;
  margin: 0 auto;
}

/* Real Footer */
footer {
  padding: 50px 0 0px;
  /* Reduced top padding */
  background: var(--grey-light);
  border-top: 1px solid #eee;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* 3-column for left-center-right balance */
  gap: 30px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.footer-address {
  margin-top: 20px;
}

.highlight-num {
  color: var(--primary-gold);
  font-weight: 900;
  font-size: 1.1rem;
}

.footer-phone {
  margin-top: 10px;
  font-weight: 700;
  color: var(--black);
}

/* Reduced gap between logo and links */

.footer-left .logo-text {
  color: var(--primary-gold);
  font-weight: 800;
}

.footer-right {
  text-align: right;
}

.address-label {
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 15px;
  display: block;
}

.address-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

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

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 15px 0;
  /* Tighter bar */
  margin-top: 30px;
  /* Reduced separation */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.developer-text {
  font-size: 0.85rem;
  color: #999;
}

.kay-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease-in-out;
}

.kay-link:hover {
  color: var(--primary-gold);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* Stacked vertically as per 'down' request */
  gap: 15px;
  text-align: center;
  align-items: center;
}

.footer-legal-links a {
  font-size: 0.9rem;
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-wave {
    opacity: 0.3;
    width: 100%;
  }

  .service-card {
    flex: 0 0 calc(50% - 12.5px);
  }

  /* 2 items on mobile */
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary-gold);
}

.mobile-fixed-enquiry {
  display: none;
}

@media (max-width: 600px) {
  body {
    padding-bottom: 80px;
    /* Safe space so sticky button hides nothing */
  }

  .header-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px 0;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }

  .header-phone {
    text-align: center;
    font-size: 0.95rem;
    /* Larger now that it has more room */
    white-space: normal;
  }

  .header-phone span {
    display: inline;
  }

  .hero {
    text-align: center;
    /* Center everything in hero for better mobile balance */
    padding: 60px 20px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.3rem;
    /* Perfectly sized for mobile screens */
    margin-bottom: 25px;
  }

  .hero .enquire-btn {
    margin: 0 auto;
    display: inline-block;
    background: var(--primary-gold);
    /* Solid gold for highlights */
    border: 2px solid var(--primary-gold);
    color: var(--white);
    padding: 15px 40px;
    font-weight: 800;
    text-shadow: none;
    letter-spacing: 1px;
  }

  .service-card {
    flex: 0 0 85%;
  }

  .services-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .why-card {
    text-align: center;
    /* Center text in why cards */
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .services-section {
    padding: 20px 0;
  }

  .section-with-form {
    padding: 20px 0;
  }

  .section-title-wrapper {
    margin-bottom: 25px;
  }

  .footer-center {
    justify-content: center;
  }

  .footer-right {
    text-align: center !important;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .main-text h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    margin-bottom: 30px;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .info-item img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .mobile-fixed-enquiry {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-gold);
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    font-weight: 800;
    text-decoration: none;
    z-index: 3000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  }
}

/* Legal Pages Styling (Privacy/Terms) */
.legal-page {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
}

.legal-header h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.last-updated {
  color: #999;
  font-size: 0.9rem;
  display: block;
}

.legal-section {
  margin-bottom: 40px;
  line-height: 1.8;
  color: #444;
}

.legal-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-gold);
  padding-left: 15px;
}

.legal-section h3 {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  color: var(--charcoal);
  font-weight: 700;
}

.legal-section ul {
  margin-left: 20px;
  list-style-type: square;
}

.legal-section li {
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .legal-header h1 {
    font-size: 2rem;
  }
}