:root {
  --dk-red: #6A0104;
  --lt-grey: #f1f1f1;
  --grey: #eeeeee;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --red: #AC0013;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 40px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.logo-top {
  font-size: 24px;
  font-weight: 900;
  font-family: "Arial", "Helvetica Inserat", sans-serif;
  color: var(--red);
  letter-spacing: 3px;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000;
}

.logo-bottom {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 2px;
  line-height: 1.1;
  font-family: "Arial Black", "Helvetica Inserat", sans-serif;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px black;
}

.logo-bottom span {
  color: var(--red);
}

.header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.header-top {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 14px;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
}

.header-info i {
  color: var(--red);
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--red);
}

.hero {
  height: 1129px;
  display: flex;
  align-items: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 1920px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1129px;
  max-width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/herobg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(172, 0, 19, 0.5);
  padding-top: 6rem;
  padding-left: 3rem;
}

.animated-text {
  font-size: 70px;
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--dk-red), var(--red));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShine 3s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(172, 0, 19, 0.5);
}

@keyframes textShine {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-subtitle {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.4;
  width: 55%;
  padding-left: 3rem;
  position: relative;
  height: 130px;
  overflow: visible;
}

.flip-text {
  perspective: 1000px;
}

.flip-text-item {
  position: absolute;
  top: 0;
  left: 3rem;
  width: calc(100% - 3rem);
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: center center;
  transition: all 0.8s ease-in-out;
  backface-visibility: hidden;
  white-space: normal;
  word-wrap: break-word;
}

.flip-text-item.active {
  opacity: 1;
  transform: rotateX(0deg);
}

.flip-text-item.flip-out {
  opacity: 0;
  transform: rotateX(90deg);
}

.hero-slogan {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 0;
  text-align: left;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 40%;
  padding-left: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-self: flex-start;
  padding-left: 2rem;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover {
  background-color: var(--dk-red);
  border-color: var(--dk-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(172, 0, 19, 0.4);
}

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

.btn-secondary:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.info-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(172, 0, 19, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(172, 0, 19, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.info-section .container {
  position: relative;
  z-index: 1;
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(172, 0, 19, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(172, 0, 19, 0.4);
  box-shadow: 0 12px 40px rgba(172, 0, 19, 0.25);
}

.info-box:hover::before {
  opacity: 1;
}

.info-icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red) 0%, var(--dk-red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(172, 0, 19, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.info-box:hover .info-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(172, 0, 19, 0.5);
}

.info-icon-wrapper i {
  font-size: 32px;
  color: var(--white);
}

.info-content {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.info-content h3 {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.info-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.about-section {
  height: 800px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-section .container {
  max-width: 1920px;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 800px;
  max-width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/aboutbg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-section h2 {
  font-size: 42px;
  color: var(--red);
  margin-bottom: 30px;
  font-weight: 700;
  width: 50%;
}

.about-section h3 {
  font-size: 32px;
  color: var(--dk-red);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  width: 50%;
}

.about-section h4 {
  font-size: 18px;
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
  width: 50%;
}

.offer-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(172, 0, 19, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(172, 0, 19, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.offer-section .container {
  position: relative;
  z-index: 1;
}

.offer-section h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.offer-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin-top: 15px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.offer-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 12px;
  border-left: 4px solid var(--red);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.offer-box:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-left-width: 4px;
  box-shadow: 0 8px 30px rgba(172, 0, 19, 0.3);
}

.offer-box i {
  color: var(--red);
  font-size: 48px;
  margin-bottom: 10px;
}

.offer-box h3 {
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.offer-box p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.7;
  margin: 0;
}

.contact-section {
  background-color: var(--white);
  padding: 80px 0;
}

.contact-section h2 {
  font-size: 42px;
  color: var(--red);
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 28px;
  color: var(--red);
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.form-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 30px;
  font-weight: 700;
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--grey);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(172, 0, 19, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

.why-choose-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1e1e1e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(172, 0, 19, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.why-choose-section .container {
  position: relative;
  z-index: 1;
}

.why-choose-section h2 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.why-choose-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin-top: 15px;
}

.why-choose-section h3 {
  font-size: 36px;
  color: var(--white);
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.why-choose-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background: var(--red);
  border-radius: 3px;
}

.why-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.why-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid rgba(172, 0, 19, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-height: 160px;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(172, 0, 19, 0.2);
}

.why-item h4 {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.why-item p {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.9;
  margin: 0;
}

.why-choose-section > .container > p {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.9;
  padding: 30px;
  background: rgba(172, 0, 19, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(172, 0, 19, 0.2);
  margin-top: 40px;
}

.opening-section {
  background-color: var(--white);
  padding: 80px 0;
}

.opening-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.hours-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.hours-card h3 {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 30px;
  font-weight: 700;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--lt-grey);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hours-item:hover {
  background-color: var(--grey);
  transform: translateX(5px);
}

.hours-item .day {
  font-weight: 600;
  color: var(--black);
  font-size: 16px;
}

.hours-item .time {
  color: var(--red);
  font-weight: 600;
  font-size: 15px;
}

.hours-item .time.closed {
  color: #999;
}

.features-section {
  background-color: var(--lt-grey);
  padding: 80px 0;
  width: 100%;
}

.features-section .container {
  width: 1920px;
  max-width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

.feature-box {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(172, 0, 19, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red), var(--dk-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: rotate(360deg);
}

.feature-icon i {
  font-size: 36px;
  color: var(--white);
}

.feature-box h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 700;
}

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

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.reviews-section .container {
  width: 1920px;
  max-width: 100%;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.reviews-subtitle {
  font-size: 18px;
  color: #ccc;
  font-weight: 400;
  margin: 0;
}

/* Featurable Widget Wrapper */
.reviews-widget-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Featurable Widget Container */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 {
  width: 100% !important;
  min-height: 400px;
  background: transparent !important;
}

/* Featurable Widget Styling - Match Website Theme */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-carousel {
  background: transparent !important;
}

/* Review Cards Styling */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-card {
  background: var(--white) !important;
  border: 2px solid rgba(172, 0, 19, 0.1) !important;
  border-radius: 12px !important;
  padding: 25px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
}

#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(172, 0, 19, 0.25) !important;
  border-color: var(--red) !important;
}

/* Stars Styling */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-stars {
  color: #FFA500 !important;
}

/* Review Text */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-review-text {
  color: #333 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* Reviewer Name */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-reviewer-name {
  color: var(--black) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Navigation Arrows */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-arrow,
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 button[class*="arrow"] {
  background: var(--red) !important;
  color: var(--white) !important;
  border: 2px solid var(--dk-red) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  transition: all 0.3s ease !important;
}

#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-arrow:hover,
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 button[class*="arrow"]:hover {
  background: var(--dk-red) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 15px rgba(172, 0, 19, 0.4) !important;
}

/* Pagination Dots */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-dot,
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 button[class*="dot"] {
  background: #ddd !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-dot.active,
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 button[class*="dot"].active {
  background: var(--red) !important;
}

/* Google Logo/Branding */
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 img[alt*="Google"],
#featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-google-logo {
  opacity: 0.8 !important;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
  .reviews-widget-wrapper {
    padding: 10px;
  }
  
  #featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 {
    min-height: 300px;
  }
  
  #featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-card {
    padding: 20px !important;
  }
  
  #featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-arrow,
  #featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 button[class*="arrow"] {
    width: 40px !important;
    height: 40px !important;
  }
  
  .reviews-section .container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .reviews-header h2 {
    font-size: 32px;
  }
  
  .reviews-subtitle {
    font-size: 16px;
  }
  
  #featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-review-text {
    font-size: 14px !important;
  }
  
  #featurable-c7c5bd1e-7011-4823-b63b-f6025ecd1886 .featurable-reviewer-name {
    font-size: 16px !important;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 20px;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.payment-methods {
  display: flex;
  gap: 15px;
  align-items: center;
}

.payment-methods i {
  font-size: 32px;
  color: #ccc;
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: var(--red);
}

.footer-bottom-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: var(--red);
}

.footer-bottom-right span {
  color: #555;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 13px;
  color: #888;
  background-color: var(--dk-red);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

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

.back-to-top:hover {
  background-color: var(--dk-red);
  transform: translateY(-5px);
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-boxes {
    gap: 20px;
  }

  .info-box {
    padding: 35px 25px;
  }
}

@media (max-width: 992px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .header-right {
    width: 100%;
  }

  .header-top,
  .nav-menu {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 40px;
    width: 90%;
    padding-top: 4rem;
    padding-left: 2rem;
  }

  .hero-subtitle {
    font-size: 32px;
    width: 90%;
    padding-left: 2rem;
    height: 110px;
  }

  .flip-text-item {
    left: 2rem;
    width: calc(100% - 2rem);
    font-size: 32px;
  }

  .hero-slogan {
    width: 80%;
    padding-left: 2rem;
  }

  .contact-grid,
  .opening-grid {
    grid-template-columns: 1fr;
  }

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

  .why-content {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 60px 0;
  }

  .info-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-box {
    padding: 30px 25px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

  .info-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .info-icon-wrapper i {
    font-size: 28px;
  }

  .info-content h3 {
    font-size: 18px;
  }

  .info-content p {
    font-size: 13px;
  }

  .why-content {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 32px;
    width: 100%;
    padding-top: 3rem;
    padding-left: 1.5rem;
  }

  .hero-subtitle {
    font-size: 24px;
    width: 95%;
    padding-left: 1.5rem;
    height: 90px;
  }

  .flip-text-item {
    left: 1.5rem;
    width: calc(100% - 1.5rem);
    font-size: 24px;
  }

  .hero-slogan {
    font-size: 16px;
    width: 100%;
    padding-left: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

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

  .info-box {
    padding: 25px 20px;
    gap: 15px;
  }

  .info-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .info-icon-wrapper i {
    font-size: 26px;
  }

  .info-content h3 {
    font-size: 17px;
  }

  .info-content p {
    font-size: 12px;
  }

  .logo-img {
    height: 50px;
  }

  .logo-top {
    font-size: 18px;
  }

  .logo-bottom {
    font-size: 15px;
  }

  .hero-title {
    font-size: 24px;
    padding-top: 2rem;
    padding-left: 1rem;
  }

  .hero-subtitle {
    font-size: 18px;
    width: 95%;
    padding-left: 1rem;
    height: 80px;
  }

  .flip-text-item {
    left: 1rem;
    width: calc(100% - 1rem);
    font-size: 18px;
  }

  .hero-slogan {
    font-size: 14px;
    padding-left: 1rem;
  }

  .about-section h2,
  .offer-section h2,
  .contact-section h2,
  .why-choose-section h2 {
    font-size: 32px;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-link {
    font-size: 12px;
  }
}

/* Enhanced Responsive Design for 1920px Base Width */

/* Extra Large Screens (1920px and above) */
@media (min-width: 1920px) {
  .container {
    padding: 0 40px;
  }
  
  .hero {
    height: 1129px;
  }
  
  .hero::before {
    height: 1129px;
  }
  
  .animated-text {
    font-size: 70px;
  }
  
  .hero-subtitle {
    font-size: 40px;
    width: 55%;
  }
  
  .hero-slogan {
    font-size: 22px;
    width: 40%;
  }
  
  .about-section {
    height: 800px;
  }
  
  .about-section::before {
    height: 800px;
  }
  
  .about-section h2 {
    font-size: 42px;
  }
  
  .about-section h3 {
    font-size: 32px;
  }
  
  .about-section h4 {
    font-size: 18px;
  }
  
  .features-section .container {
    padding: 0 40px;
  }
  
  .features-grid {
    gap: 50px;
  }
}

/* Large Desktop (1440px - 1919px) */
@media (max-width: 1919px) and (min-width: 1440px) {
  .container {
    width: 1440px;
    padding: 0 30px;
  }
  
  .hero {
    height: 950px;
  }
  
  .hero::before {
    height: 950px;
  }
  
  .animated-text {
    font-size: 60px;
  }
  
  .hero-subtitle {
    font-size: 36px;
    width: 60%;
  }
  
  .hero-slogan {
    font-size: 20px;
    width: 45%;
  }
  
  .hero-buttons {
    padding-left: 2rem;
  }
  
  .btn {
    padding: 12px 28px;
    font-size: 15px;
  }
  
  .about-section {
    height: 700px;
  }
  
  .about-section::before {
    height: 700px;
  }
  
  .about-section h2 {
    font-size: 38px;
  }
  
  .about-section h3 {
    font-size: 28px;
  }
  
  .about-section h4 {
    font-size: 17px;
    width: 55%;
  }
  
  .reviews-section .container {
    width: 1440px;
  }
  
  .features-section .container {
    width: 1440px;
  }
  
  .features-grid {
    gap: 35px;
  }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .container {
    width: 1200px;
    padding: 0 30px;
  }
  
  .hero {
    height: 800px;
  }
  
  .hero::before {
    height: 800px;
  }
  
  .animated-text {
    font-size: 52px;
  }
  
  .hero-subtitle {
    font-size: 32px;
    width: 65%;
    height: 110px;
  }
  
  .hero-slogan {
    font-size: 18px;
    width: 50%;
  }
  
  .hero-title {
    padding-top: 4rem;
    padding-left: 2.5rem;
  }
  
  .hero-buttons {
    padding-left: 1.5rem;
  }
  
  .btn {
    padding: 11px 26px;
    font-size: 14px;
  }
  
  .about-section {
    height: 600px;
  }
  
  .about-section::before {
    height: 600px;
  }
  
  .about-section h2 {
    font-size: 36px;
    width: 60%;
  }
  
  .about-section h3 {
    font-size: 26px;
    width: 60%;
  }
  
  .about-section h4 {
    font-size: 16px;
    width: 60%;
  }
  
  .reviews-section .container {
    width: 1200px;
  }
  
  .features-section .container {
    width: 1200px;
  }
  
  .features-grid {
    gap: 30px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .container {
    width: 100%;
    padding: 0 25px;
  }
  
  .hero {
    height: 700px;
  }
  
  .hero::before {
    height: 700px;
  }
  
  .animated-text {
    font-size: 44px;
  }
  
  .hero-subtitle {
    font-size: 28px;
    width: 70%;
    height: 95px;
    padding-left: 2.5rem;
  }
  
  .hero-slogan {
    font-size: 16px;
    width: 60%;
    padding-left: 2.5rem;
  }
  
  .hero-title {
    padding-top: 3.5rem;
    padding-left: 2rem;
  }
  
  .flip-text-item {
    left: 2.5rem;
    width: calc(100% - 2.5rem);
  }
  
  .hero-buttons {
    padding-left: 1.5rem;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 13px;
  }
  
  .about-section {
    height: 600px;
    padding: 60px 0;
  }
  
  .about-section::before {
    height: 600px;
  }
  
  .about-section h2 {
    font-size: 32px;
    width: 70%;
  }
  
  .about-section h3 {
    font-size: 24px;
    width: 70%;
  }
  
  .about-section h4 {
    font-size: 15px;
    width: 70%;
  }
  
  .reviews-section .container {
    width: 100%;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  
  .hero {
    height: 600px;
  }
  
  .hero::before {
    height: 600px;
  }
  
  .animated-text {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 24px;
    width: 80%;
    height: 80px;
    padding-left: 2rem;
  }
  
  .hero-slogan {
    font-size: 14px;
    width: 70%;
    padding-left: 2rem;
  }
  
  .hero-title {
    padding-top: 3rem;
    padding-left: 1.5rem;
  }
  
  .flip-text-item {
    left: 2rem;
    width: calc(100% - 2rem);
  }
  
  .hero-buttons {
    padding-left: 1rem;
    gap: 15px;
  }
  
  .btn {
    padding: 9px 22px;
    font-size: 12px;
  }
  
  .about-section {
    height: 500px;
    padding: 50px 0;
  }
  
  .about-section::before {
    height: 500px;
  }
  
  .about-section h2 {
    font-size: 28px;
    width: 80%;
  }
  
  .about-section h3 {
    font-size: 22px;
    width: 80%;
  }
  
  .about-section h4 {
    font-size: 14px;
    width: 80%;
  }
  
  .reviews-section .container {
    width: 100%;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  
  .hero {
    height: 550px;
  }
  
  .hero::before {
    height: 550px;
  }
  
  .animated-text {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 20px;
    width: 90%;
    height: 70px;
    padding-left: 1.5rem;
  }
  
  .hero-slogan {
    font-size: 13px;
    width: 85%;
    padding-left: 1.5rem;
  }
  
  .hero-title {
    padding-top: 2.5rem;
    padding-left: 1.5rem;
  }
  
  .flip-text-item {
    left: 1.5rem;
    width: calc(100% - 1.5rem);
    font-size: 20px;
  }
  
  .hero-buttons {
    padding-left: 1rem;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 11px;
  }
  
  .about-section {
    height: 450px;
    padding: 40px 0;
  }
  
  .about-section::before {
    height: 450px;
  }
  
  .about-section h2 {
    font-size: 24px;
    width: 90%;
  }
  
  .about-section h3 {
    font-size: 20px;
    width: 90%;
  }
  
  .about-section h4 {
    font-size: 13px;
    width: 90%;
  }
  
  .reviews-section .container {
    width: 100%;
  }
}

/* Mobile Small (below 576px) */
@media (max-width: 575px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  .hero {
    height: 500px;
  }
  
  .hero::before {
    height: 500px;
  }
  
  .animated-text {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    width: 95%;
    height: 65px;
    padding-left: 1rem;
  }
  
  .hero-slogan {
    font-size: 12px;
    width: 95%;
    padding-left: 1rem;
  }
  
  .hero-title {
    padding-top: 2rem;
    padding-left: 1rem;
  }
  
  .flip-text-item {
    left: 1rem;
    width: calc(100% - 1rem);
    font-size: 18px;
  }
  
  .hero-buttons {
    padding-left: 1rem;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn {
    padding: 8px 18px;
    font-size: 11px;
    width: auto;
  }
  
  .about-section {
    height: 400px;
    padding: 30px 0;
  }
  
  .about-section::before {
    height: 400px;
  }
  
  .about-section h2 {
    font-size: 22px;
    width: 95%;
  }
  
  .about-section h3 {
    font-size: 18px;
    width: 95%;
    margin-top: 30px;
  }
  
  .about-section h4 {
    font-size: 12px;
    width: 95%;
    line-height: 1.6;
  }
  
  .reviews-section .container {
    width: 100%;
  }
}