/* Essential Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #2c2c2c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.2em;
}
p {
  margin-bottom: 15px;
}
a {
  color: #31c384;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #28a874;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}

/* Logo Styling */
.logo {
  float: left;
}
.logo h1 {
  margin: 0;
}
.logo a {
  color: #31c384 !important;
  text-decoration: none;
}
.logo-text {
  font-family: "Dancing Script", cursive !important;
  font-size: 2.5em !important;
  font-weight: 700 !important;
  color: #31c384 !important;
  line-height: 1 !important;
  display: block !important;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.7));
}
.logo-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
  display: block !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-top: -5px;
  text-align: left !important;
}

/* Layout */
.site-container {
  opacity: 1 !important;
  background: white;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.column {
  float: left;
  padding: 0 15px;
}
.column-1-3 {
  width: 33.333%;
}
@media (max-width: 767px) {
  .column {
    width: 100% !important;
    float: none;
  }
}

/* Header */
.transparent-header-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}
.header-container {
  background: transparent;
  padding: 20px 0;
}
.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  float: left;
}
.hidden-element {
  position: absolute !important;
  left: -9999px !important;
}

/* Navigation */
.menu-container {
  float: right;
}
.sf-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sf-menu li {
  position: relative;
  margin: 0 15px;
}
.sf-menu a {
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
}
.sf-menu a:hover {
  color: #31c384;
}
.mobile-menu-container {
  display: none;
}

/* Special styling for BOOK NOW menu item */
.book-now-menu {
  color: #31c384 !important;
  font-weight: 700 !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8) !important;
}
.book-now-menu:hover {
  color: #28a874 !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9) !important;
}

/* Sections */
.theme-page {
  padding: 0;
}
.padding-bottom-100 {
  padding-bottom: 30px;
}
.page-padding-top-section {
  /* Padding is now handled by .full-width rules */
}
.page-margin-top {
  margin-top: 50px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-30 {
  margin-top: 30px;
}
.gray {
  background: #f5f5f5;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

/* Section Bands */
.full-width.gray {
  background: #f5f5f5;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 80px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: relative;
}
.full-width:not(.gray) {
  background: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0;
  border-top: 2px solid #f8f8f8;
  border-bottom: 2px solid #f8f8f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: visible;
  position: relative;
}

/* Ensure proper section separation */
.theme-page .full-width + .full-width {
  margin-top: 0;
}
.theme-page .full-width {
  position: relative;
  z-index: 1;
}
.theme-page .full-width.gray {
  z-index: 2;
}

/* Clear any conflicting spacing */
.full-width .row {
  position: relative;
}
.full-width .row::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure columns display properly */
.column {
  float: left;
  padding: 0 15px;
  box-sizing: border-box;
}
.column-1-3 {
  width: 33.333%;
}

/* Column layout improvements */
.column-1-2 {
  width: 50%;
}
.column-1-1 {
  width: 100%;
}
@media (max-width: 767px) {
  .column {
    width: 100% !important;
    float: none;
  }
  .column-1-2 {
    width: 100% !important;
  }
  .column-1-1 {
    width: 100% !important;
  }
}

/* Typography */
.box-header {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  font-weight: 300;
}
.description {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
}
.list li {
  padding: 5px 0 5px 25px;
  position: relative;
}
.template-tick-1::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #31c384;
  font-weight: bold;
}

/* Features */
.features-list {
  padding: 0;
}
.features-list li {
  margin-bottom: 40px;
  list-style: none;
  text-align: center;
}
.features-list .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: block;
  color: #31c384;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
}
.features-list h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2em;
  text-transform: uppercase;
}
.features-list p {
  color: #666;
  line-height: 1.6;
}

/* Feature Icons */
.features-home-1::before {
  content: "🏠";
}
.features-office-2::before {
  content: "🏢";
}
.features-trolley::before {
  content: "🧳";
}
.features-construction::before {
  content: "🔨";
}
.features-vacuum-cleaner::before {
  content: "🧹";
}
.features-bedroom::before {
  content: "🛏";
}

/* Forms */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.contact-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-form .column {
  flex: 1;
  min-width: 300px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #31c384;
  outline: none;
  box-shadow: 0 0 5px rgba(49, 195, 132, 0.3);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .dropdown {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}
.btn,
.more,
.more.active {
  display: inline-block;
  padding: 15px 30px;
  background: #31c384;
  color: white !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn:hover,
.more:hover,
.more.active:hover {
  background: #28a874;
  color: white !important;
  transform: translateY(-2px);
}

/* Footer */
.footer-container {
  background: #2c2c2c;
  color: #999;
  padding: 30px 0 0;
  margin-top: 0px;
  margin-bottom: 0;
  clear: both;
}
.footer h6 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #31c384;
  padding-bottom: 10px;
}
.footer p,
.footer .list {
  color: #ccc;
  line-height: 1.6;
}
.footer .list li {
  padding: 5px 0;
}
.footer a {
  color: #31c384;
  transition: color 0.3s;
}
.footer a:hover {
  color: #28a874;
}
.footer .more {
  background: #31c384;
  color: white !important;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: bold;
}
.footer .more:hover {
  background: #28a874;
}
.copyright {
  margin-top: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  color: #888;
  font-size: 13px;
  background: #2c2c2c;
  margin-bottom: 0;
}

/* Utilities */
.template-phone::before {
  content: "📞";
  margin-right: 5px;
}
.template-mail::before {
  content: "✉";
  margin-right: 5px;
}
.template-shopping-cart::before {
  content: "🛒";
  margin-right: 5px;
}
.template-arrow-vertical-3 {
  display: none;
}
.background-overlay {
  display: none;
}

/* Team Photo Styling */
.team-photo-small {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #31c384;
  box-shadow: 0 6px 20px rgba(49, 195, 132, 0.3);
  margin-bottom: 20px;
}

/* Circular Layout with Centered Team Photo */
.team-photo-center {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #31c384;
  box-shadow: 0 8px 25px rgba(49, 195, 132, 0.4);
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.circular-layout .column-1-3 {
  position: relative;
}

/* Right-aligned checkmarks for left column */
.right-aligned-checks .template-tick-1 {
  text-align: right;
  padding-right: 25px;
  padding-left: 0;
}

.right-aligned-checks .template-tick-1::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #31c384;
  font-weight: bold;
  left: auto;
}

/* Align left column content to the right */
.circular-layout #why-choose {
  text-align: right;
}

.circular-layout #why-choose h3 {
  text-align: right;
}

/* Keep right column normal alignment */
.circular-layout #whats-included {
  text-align: left;
}

.circular-layout #whats-included h3 {
  text-align: left;
}

/* Contact Section Styling */
#contact .features-list li {
  text-align: left;
  margin-bottom: 20px;
}
#contact .features-list h4 {
  color: #31c384;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 600;
}
#contact .features-list p {
  margin-bottom: 0;
}

/* Booking Section Styling */
#booking {
  margin-bottom: 0;
}
#booking .box-header {
  color: #333;
  margin-bottom: 15px;
}
#booking .description {
  margin-bottom: 40px;
}

/* Mobile */
@media (max-width: 767px) {
  .menu-container {
    display: none;
  }
  .mobile-menu-container {
    display: block;
  }
  .header-container {
    background: rgba(0, 0, 0, 0.8);
  }
  .features-list li {
    text-align: center;
  }
  #contact .features-list li {
    text-align: center;
  }
  /* Fix mobile alignment */
  .row {
    padding: 0 15px; /* Reduced and equal padding */
  }
  .header {
    padding: 0 15px; /* Match row padding */
  }
  /* Ensure full-width sections are truly centered */
  .full-width {
    padding-left: 0;
    padding-right: 0;
  }
  .full-width .row {
    padding: 0 15px;
  }
  /* Reduce section headers on mobile */
  .box-header {
    font-size: 1.6em;
    line-height: 1.2;
    padding: 0 10px;
    margin-bottom: 10px; /* Reduced from 20px */
  }
  /* Hide service description paragraph on mobile */
  .services-description {
    display: none;
  }
  /* Reduce section padding on mobile */
  .full-width.gray {
    padding-top: 30px; /* Reduced from 80px */
    padding-bottom: 30px; /* Reduced from 80px */
  }
  .full-width:not(.gray) {
    padding-top: 30px; /* Reduced from 80px */
    padding-bottom: 30px; /* Reduced from 80px */
  }
  .page-margin-top {
    margin-top: 20px; /* Reduced from 50px */
  }
}
