/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --lapis-lazuli: #05668dff;
  --teal: #028090ff;
  --persian-green: #00a896ff;
  --mint: #02c39aff;
  --cream: #f0f3bdff;

  --white-color:                  #ffffff;
  --primary-color:                var(--mint);
  --secondary-color:              var(--persian-green);
  --section-bg-color:             #f9f9f9;
  --site-footer-bg-color:         #36363E;
  --custom-btn-bg-color:          var(--teal);
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --twitter-color:                #1da1f2;
  --facebook-color:               #1877f2;
  --instagram-color:              #c13584;
  --pinterest-color:              #e60023;
  --whatsapp-color:               #128c7e;

  --body-font-family:             'League Spartan', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family); 
    padding-top: 70px;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.tooplate-red {
	color: var(--secondary-color);
}
.tooplate-green {
	color: var(--custom-btn-bg-color);
}

/* Logo Text - Modern Branded Design */
.logo-text {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal) 0%, var(--persian-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding: 10px 18px;
  font-family: var(--body-font-family);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  line-height: 1.2;
}

.logo-text:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(2, 128, 144, 0.3));
}

.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-brand .logo-text {
  padding: 8px 12px 8px 18px;
}

/* Service Icon Overlay Button */
.shop-icon-overlay {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 28px rgba(2, 192, 154, 0.35);
  border: none;
  position: relative;
  z-index: 2;
}

.shop-icon-overlay::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, var(--mint) 0%, var(--persian-green) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.shop-icon-overlay:hover {
  background: var(--persian-green);
  transform: scale(1.18) translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 168, 150, 0.45);
  color: var(--cream);
}

.shop-icon-overlay:hover::before {
  opacity: 1;
}

.shop-icon-overlay i {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
}

.shop-icon-overlay:hover i {
  transform: scale(1.15) rotate(8deg);
}

/* Enhanced Service Cards */
.shop-section {
  background: linear-gradient(135deg, var(--white-color) 0%, rgba(2, 192, 154, 0.02) 100%);
}

.shop-thumb {
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
}

.shop-thumb:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(5, 102, 141, 0.15);
}

.shop-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(240, 243, 189, 0.3) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.shop-image-wrap:hover {
  background: linear-gradient(135deg, var(--mint) 0%, var(--persian-green) 100%);
}



.shop-body {
  padding: 25px 20px;
  background: var(--white-color);
  border-radius: 0 0 12px 12px;
  transition: all 0.3s ease;
}

.shop-body h4 {
  color: var(--lapis-lazuli);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
}

.shop-body p {
  color: var(--p-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.shop-thumb:hover .shop-body {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(240, 243, 189, 0.3) 100%);
  padding-top: 30px;
}

/* Service Section Header */
.shop-section .col-lg-12 h2 {
  color: var(--lapis-lazuli);
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
}

.shop-section .section-small-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Service Areas */
.service-areas-grid {
  margin-top: 20px;
}

.service-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--p-color);
}

.service-area-list li:last-child {
  border-bottom: none;
}

/* FAQ Section */
.faq-section {
  background: var(--section-bg-color);
}

.accordion-button {
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white-color);
}

.accordion-button:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 79, 0.25);
}

.accordion-body {
  color: var(--p-color);
}

/* Hero CTA */
.hero-cta {
  margin-bottom: 30px;
}

.hero-cta .custom-btn {
  min-width: 200px;
  font-weight: var(--font-weight-bold);
  font-size: var(--h5-font-size);
  padding: 18px 30px;
}

/* Service Detail Section */
.service-detail-section {
  background: var(--white-color);
  border-left: 5px solid var(--persian-green);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-detail-section:hover {
  box-shadow: 0 5px 20px rgba(0, 160, 150, 0.1);
  transform: translateY(-2px);
}

.service-detail-section h3 {
  color: var(--lapis-lazuli);
  margin-bottom: 15px;
  font-size: 28px;
}

.service-detail-section p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-detail-section ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--p-color);
}

.service-detail-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--persian-green);
  font-weight: bold;
  font-size: 18px;
}

/* Mid-Section CTA */
.mid-section-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--persian-green) 100%);
  padding: 60px 40px;
  border-radius: 10px;
  text-align: center;
  margin: 60px 0;
  color: var(--white-color);
}

.mid-section-cta h2 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 36px;
}

.mid-section-cta p {
  color: var(--cream);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mid-section-cta .custom-btn {
  background: var(--cream);
  color: var(--lapis-lazuli);
  font-weight: bold;
  font-size: 16px;
  padding: 15px 40px;
  border: 2px solid var(--cream);
}

.mid-section-cta .custom-btn:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

/* Geo-Specific Content Section */
.geo-content-section {
  background: rgba(2, 192, 154, 0.05);
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
}

.geo-content-section h3 {
  color: var(--lapis-lazuli);
  margin-bottom: 20px;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.benefit-card {
  background: var(--white-color);
  padding: 20px;
  border-radius: 8px;
  border-top: 3px solid var(--persian-green);
  text-align: center;
}

.benefit-card i {
  font-size: 32px;
  color: var(--persian-green);
  margin-bottom: 10px;
  display: block;
}

.benefit-card h5 {
  color: var(--lapis-lazuli);
  margin-bottom: 10px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background: var(--section-bg-color);
}

.section-small-title {
  color: var(--teal);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  display: block;
}

.section-overlay {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.custom-block {
  background: var(--mint);
  border-top: 20px solid var(--persian-green);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}

.featured-custom-block {
  background: var(--border-color);
}

.shop-detail-custom-block {
  background: transparent;
  border-top: 0;
  border-radius: 0;
  padding: 30px;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-link {
  border-color: var(--border-color);
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--copyright-font-size);
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
  background: var(--persian-green);
  border-color: transparent;
  color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: 0;
  border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--persian-green);
}

.custom-link:hover::after {
  background: var(--teal);
}


/*---------------------------------------
  CUSTOM BADGE               
-----------------------------------------*/
.custom-badge {
  background: var(--white-color);
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
  padding: 10px 10px 6px 10px;
}

.custom-badge::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 7px solid var(--white-color);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 15px 20px;
}

.custom-btn:hover {
  background: transparent;
  border-color: var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.3s;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
  padding: 0;
  margin: 0;
}

.navbar-brand .logo-text {
  margin: 0;
  padding: 15px 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px 35px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: var(--persian-green);
  color: var(--white-color);
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
}

.dropdown-item {
  border-bottom: 1px solid var(--border-color);
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: var(--persian-green);
  color: var(--white-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/empty-living-room-with-blue-sofa-plants-table-empty-white-wall-background-3d-rendering.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(80, 80, 80, 0.6);
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(100vh - 70px);
  }
}

.hero-form {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
  padding-bottom: 16px;
}

/* Modern Hero Section Enhancement */
.hero-section-text {
  animation: fadeInUp 0.8s ease-out;
}

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

/* Hero Badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 10px 20px;
  animation: slideDown 0.8s ease-out 0.2s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-text {
  color: var(--cream);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.badge-text i {
  margin-right: 6px;
  color: var(--mint);
}

/* Hero Title */
.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: slideDown 0.8s ease-out 0.3s both;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: slideDown 0.8s ease-out 0.4s both;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideDown 0.8s ease-out 0.5s both;
}

/* Primary Button */
.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mint) 0%, var(--persian-green) 100%);
  color: var(--lapis-lazuli);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(2, 192, 154, 0.3);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.hero-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(2, 192, 154, 0.45);
  background: linear-gradient(135deg, var(--persian-green) 0%, var(--mint) 100%);
}

.hero-primary-btn:active {
  transform: translateY(-2px);
}

/* Secondary Button */
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--cream);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid var(--cream);
  letter-spacing: 0.5px;
}

.hero-secondary-btn:hover {
  background: var(--cream);
  color: var(--lapis-lazuli);
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(240, 243, 189, 0.3);
}

.hero-secondary-btn:active {
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: slideDown 0.8s ease-out 0.6s both;
}

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

.stat-number {
  color: var(--mint);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 32px;
  }
}

.hero-icon,
.contact-icon {
  color: var(--secondary-color);
}




/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.about-image {
  display: block;
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
}

.about-image-container img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image-container:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.about-image-container {
  cursor: pointer;
}

.about-image-container:hover div {
  background: linear-gradient(to top, rgba(2, 192, 154, 1), rgba(2, 192, 154, 0.5)) !important;
}

/* About Section Image Styles */
.about-section .about-image-container {
  max-width: 100%;
  height: auto;
}



/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-section {
  background-image: url('../images/empty-living-room-with-blue-sofa-plants-table-empty-white-wall-background-3d-rendering.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.featured-icon {
  font-size: var(--h5-font-size);
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background: var(--section-bg-color);
}

.reviews-carousel .owl-item img,
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.reviews-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
}

.reviews-carousel .owl-nav button.owl-next, 
.reviews-carousel .owl-nav button.owl-prev {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  margin: 5px;
  transition: all 0.5s;
}

.reviews-carousel .owl-nav button.owl-next:hover, 
.reviews-carousel .owl-nav button.owl-prev:hover {
  background: var(--secondary-color);
}

.reviews-carousel .owl-prev:hover span::before, 
.reviews-carousel .owl-next:hover span::before {
  color: var(--white-color);
}

.reviews-carousel .owl-prev span, 
.reviews-carousel .owl-next span {
  display: block;
  color: transparent;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.reviews-carousel .owl-prev span::before, 
.reviews-carousel .owl-next span::before {
  font-family: bootstrap-icons;
  display: block;
  font-size: var(--h4-font-size);
  color: var(--secondary-color);
}

.reviews-carousel .owl-prev span::before {
  content: "\f12f";
}

.reviews-carousel .owl-next span::before {
  content: "\f138";
}

.reviews-thumb {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-body {
  padding: 50px 40px;
}

.reviews-bottom {
  background: var(--secondary-color);
  background: linear-gradient(180deg, rgba(246,81,41,1) 0%, rgba(255,190,140,1) 100%);
  position: relative;
  padding: 10px 36px;
}

.reviews-bottom-up::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 22px solid var(--secondary-color);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  position: absolute;
  top: -20px;
  left: 36px;
}

.bi-star-fill {
  color: var(--mint);
}

.reviews-section .custom-btn {
  background: var(--facebook-color);
}

.reviews-section .custom-btn:hover {
  background: transparent;
  border-color: var(--facebook-color);
  color: var(--facebook-color);
}

.reviews-bottom small {
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
}


/*---------------------------------------
  SHOP              
-----------------------------------------*/
.shop-section {
  background: var(--white-color);
}

.shop-listing-page .shop-section {
  padding-bottom: 0;
}

.shop-thumb {
  margin-bottom: 24px;
}

.shop-image-wrap {
  position: relative;
}

.shop-image-wrap:hover .shop-btn-wrap {
  opacity: 1;
}

.shop-icons-wrap {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.shop-icons {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 20px 15px;
}

.shop-icon {
  line-height: normal;
  margin-bottom: 10px;
}

.shop-icon:last-child {
  margin-bottom: 0;
}

.shop-pricing-text {
  color: var(--secondary-color);
}

.shop-condition-text {
  color: var(--custom-btn-bg-color);
}

.shop-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

.shop-body {
  padding: 20px;
  padding-bottom: 0;
}

.shop-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.shop-btn {
  background: var(--primary-color);
  font-size: var(--copyright-font-size);
  width: 100px;
  height: 100px;
  text-transform: uppercase;
}

.shop-btn:hover {
  border-color: transparent;
  background: var(--persian-green);
  color: var(--white-color);
}

.shop-detail-bar {
  padding: 20px;
}

.shop-listing-page .navbar-nav .nav-link.active,
.shop-detail-page .navbar-nav .nav-link.active {
  background: transparent;
  color: var(--p-color);
}

.shop-listing-page .navbar-nav .nav-link.active:hover,
.shop-detail-page .navbar-nav .nav-link.active:hover {
  background: var(--persian-green);
  color: var(--white-color);
}

/* Ensure shop images in services section don't show overlays */
#section_3 .shop-image {
  opacity: 1 !important;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.contact-form label {
  font-weight: var(--font-weight-semibold);
}

.google-map {
  display: block;
  border-radius: var(--border-radius-medium);
}

/* Contact CTA Button */
.contact-cta-button {
  margin-top: 30px;
}

.contact-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal) 0%, var(--persian-green) 100%);
  color: var(--white-color);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 28px rgba(2, 128, 144, 0.3);
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.contact-cta-btn:hover {
  background: linear-gradient(135deg, var(--persian-green) 0%, var(--teal) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 168, 150, 0.45);
  color: var(--cream);
}

.contact-cta-btn:active {
  transform: translateY(-2px) scale(0.98);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .input-group {
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: .25rem;
  margin-bottom: 24px;
  padding-left: 20px;
}

.custom-form .textarea-group label {
  margin-top: 13px;
}

.custom-form label {
  margin-right: 10px;
  margin-bottom: 0;
}

.custom-form .form-control {
  background-color: var(--white-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form button[type="submit"] {
  background: var(--persian-green);
  border: none;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--persian-green);
  border-color: transparent;
}


/*---------------------------------------
  FILTER FORM              
-----------------------------------------*/
.filter-form {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.filter-form-small-title {
  display: block;
  margin-bottom: 10px;
}

.filter-form .form-select {
  border: 2px solid var(--border-color);
}

.filter-form .form-check-label {
  color: var(--p-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: var(--site-footer-bg-color);
  padding-top: 0;
}

.site-footer h3 {
  line-height: normal;
}

.site-footer h3 .custom-link,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.site-footer h3 .custom-link:hover {
  color: var(--primary-color);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-top: 10px;
}

.site-footer .social-icon-link {
  margin-top: 10px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 15px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--secondary-color);
}

.social-icon-twitter {
  color: var(--twitter-color);
}

.social-icon-facebook {
  color: var(--facebook-color);
}

.social-icon-instagram {
  color: var(--instagram-color);
}

.social-icon-pinterest {
  color: var(--pinterest-color);
}

.social-icon-whatsapp {
  color: var(--whatsapp-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  .logo-text {
    font-size: 18px;
    padding: 12px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .page-link {
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    padding: 15px 30px;
    min-width: 125px;
  }

  .about-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .about-image {
    width: 260px;
    height: 260px;
  }

  .about-image-small {
    width: 180px;
    height: 180px;
  }

  .custom-block,
  .contact-form {
    padding: 30px;
  }

  .service-area-list {
    margin-bottom: 20px;
  }

  .reviews-thumb {
    margin-bottom: 24px;
  }

  .reviews-body {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 580px) {
  .site-footer {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .about-image {
    width: 205px;
    height: 205px;
  }

  .about-image-small {
    width: 145px;
    height: 145px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .logo-text {
    font-size: 16px;
    padding: 10px 0;
  }
}