:root {
  --primary-color: #a6694c;
  --primary-light: #c4825f;
  --primary-dark: #8f5a41;
  --secondary-color: #454e6a;
  --secondary-light: #5a6580;
  --secondary-dark: #363d54;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --dark-gray: #1e293b;
  --black: #0f172a;
  --success-green: #10b981;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--secondary-color) 50%,
    var(--primary-color) 100%
  );
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
}

h1 {
  line-height: 1.3em;
  font-size: 2.5em;
  margin-bottom: 30px;
}

h2,
h3,
h4 {
  letter-spacing: 1px;
}

p,
h2,
h3,
h4 {
  margin-bottom: 20px;
  margin-top: 0px;
}

h3 {
  font-size: 1.5em;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

ul,
ol {
  padding-left: 40px;
}

ul li,
ol li {
  margin-bottom: 5px;
}

.subpage-container h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.subpage-container h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.subpage-container p {
  margin-bottom: 15px;
}

.subpage-container ul {
  margin-left: 15px;
  margin-bottom: 15px;
  padding-left: 20px;
}

/* Hero Section */
.hero {
  /* background: var(--gradient-hero); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/hero.jpg) no-repeat top center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 160px;
}

.subpage-hero {
  /* background: var(--gradient-hero); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/hero.jpg) no-repeat top center;
  background-size: cover;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 160px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
  left: 100%;
}

/* Modern Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.subpage-section {
  padding: 4rem 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.subpage-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--secondary-color);
  margin-bottom: 4rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Benefits Section */
.benefits {
  background: var(--light-gray);
  position: relative;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(69, 78, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.benefit-icon {
  font-size: 3.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.benefit-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Services Section */
.services {
  background: var(--secondary-color);
  color: var(--white);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>')
    repeat;
  opacity: 0.3;
}

.services .section-title {
  color: var(--white);
}

.services .section-title::after {
  background: var(--gradient-primary);
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.services-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  width: 400px;
  margin: 20px;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--white);
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Gallery Preview */
.gallery-preview {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  height: 300px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/gallery1t.jpg) no-repeat top center;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.gallery-item:nth-of-type(1) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/gallery1t.jpg) no-repeat top center;
  background-position: 50% 50%;
}
.gallery-item:nth-of-type(2) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/gallery4t.jpg) no-repeat top center;
  background-position: 50% 50%;
}
.gallery-item:nth-of-type(3) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/gallery3t.jpg) no-repeat top center;
  background-position: 50% 50%;
}
.gallery-item:nth-of-type(4) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/gallery12t.jpg) no-repeat top center;
  background-position: 50% 50%;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.gallery-item:hover::before {
  transform: translateX(100%);
}

/* Service Area */
.service-area {
  background: var(--light-gray);
  text-align: center;
}

.map-placeholder {
  height: 450px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  border: 2px dashed var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  opacity: 0.5;
}

.map-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-content i {
  font-size: 4rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--secondary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  justify-items: center;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-light);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.75rem;
  display: block;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-light);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  padding-left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Service Area Styles */
.service-area {
  background: var(--light-gray);
  position: relative;
}

.service-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.location-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(69, 78, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.location-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.location-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-description {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.location-features {
  list-style: none;
  padding: 0;
}

.location-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.location-features li i {
  color: var(--success-green);
  margin-right: 0.75rem;
  width: 16px;
  font-size: 0.9rem;
}

.coverage-banner {
  background: var(--secondary-color);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coverage-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>')
    repeat;
  opacity: 0.3;
}

.coverage-banner-content {
  position: relative;
  z-index: 2;
}

.coverage-banner h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coverage-banner h3 i {
  margin-right: 0.75rem;
  color: var(--primary-light);
}

.coverage-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.contact-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-cta:hover::before {
  left: 100%;
}

.contact-cta i {
  margin-right: 0.5rem;
}

.subpage-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--secondary-color);
  margin-bottom: 4rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:hover::before {
  left: 100%;
}

/* Key Features */
.key-features {
  background: var(--light-gray);
  position: relative;
}

.key-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
  margin-top: 10px;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(69, 78, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 2.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.feature-card p {
  color: var(--medium-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Size Selection */
.size-selection {
  background: var(--secondary-color);
  color: var(--white);
  position: relative;
}

.size-selection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>')
    repeat;
  opacity: 0.3;
}

.size-selection .section-title {
  color: var(--white);
}

.size-selection .section-title::after {
  background: var(--gradient-primary);
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.size-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  text-align: center;
  width: 400px;
  position: relative;
}

.size-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.size-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.size-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.size-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.size-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.size-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.capacity-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.capacity-list li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.capacity-list li i {
  color: var(--primary-light);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

@media (min-width: 1100px) {
  .subpage-images {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0px;
  }

  .subpage-images img {
    width: 45%;
  }

  .header {
    position: fixed;
    padding: 10px;
    background-color: white;
    z-index: 10000000;
    width: 100%;
    transition: all 0.5s;
    height: 115px;
  }

  .darken-header {
    background: #222222;
  }

  .header img {
    margin-left: 125px;
    width: 160px;
    transition: all 0.5s;
  }

  .header.scrolled {
    height: 75px;
    transition: all 0.5s;
  }

  .header.scrolled img {
    margin-left: 125px;
    width: 100px;
    transition: all 0.5s;
  }

  .closebtn {
    display: none !important ;
  }

  .topnav,
  .topnav-content {
    overflow: hidden;
    float: right;
    display: flex;
    width: 700px;
    text-align: right;
    flex-direction: row;
    justify-content: space-around;
    margin: 35px 0px 0px 35px;
    transition: all 0.5s;
  }

  .topnav-content {
    margin: 0;
  }

  .topnav.scrolled {
    margin: 15px 0px 0px 35px;
    transition: all 0.5s;
  }

  .topnav a {
    float: right;
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    position: relative;
  }

  .topnav a img {
    display: none;
  }

  .topnav a:before,
  .topnav a:after,
  .dropdown1 .dropbtn1:before,
  .dropdown1 .dropbtn1:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    top: 25%;
    margin-top: -0.5px;
    background: var(--primary-color);
  }

  .dropdown1 .dropbtn1:before,
  .dropdown1 .dropbtn1:after,
  .dropdown1 .dropdown-a:before,
  .dropdown1 .dropdown-a:after {
    top: 50%;
  }

  .topnav a:before,
  .dropdown1 .dropbtn1:before {
    left: -1px;
  }
  .topnav a:after,
  .dropdown1 .dropbtn1:after {
    right: 2.5px;
    background: var(--primary-color);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .topnav a:hover:before,
  .dropdown1 .dropbtn1:hover:before {
    background: var(--primary-color);
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .topnav a:hover:after,
  .dropdown1 .dropbtn1:hover:after {
    background: transparent;
    width: 100%;
    transition: 0s;
  }

  .header .icon {
    display: none;
  }

  .dropdown1 {
    float: right;
    overflow: hidden;
    padding-bottom: 33px;
    margin-top: 2px;
  }

  .dropdown1 i {
    margin-left: 10px;
  }

  .dropdown1 .dropbtn1 {
    font-size: 18px;
    border: none;
    outline: none;
    color: black;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    position: relative;
  }

  .dropdown-content1 {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
    z-index: 1;
  }

  .dropdown-content1 span {
    float: none;
    color: white;
    padding: 15px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
    width: auto;
  }

  .dropdown-a {
    float: left !important;
    font-size: 14px !important;
  }

  .dropdown1:hover .dropdown-content1 {
    display: flex;
    flex-direction: column;
    top: 100px;
    transition: all 0.5s;
  }

  .topnav.scrolled .dropdown1:hover .dropdown-content1 {
    top: 75px;
    transition: all 0.5s;
  }

  .contact-page-flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-page-map {
    width: 45%;
  }

  .contact-page-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 45%;
  }

  .contact-page-text {
    display: flex;
    flex-direction: column;
  }

  .contact-page-text h2 {
    color: var(--secondary-color);
    font-size: 30px;
    position: relative;
  }

  .contact-page-text h2:after {
    content: "";
    background-color: var(--primary-color);
    width: 208px;
    height: 4px;
    position: absolute;
    top: 39% !important;
    left: 0%;
  }

  .contact-page-text h3 {
    color: var(--secondary-color);
    font-size: 18px;
  }

  .contact-page-info {
    display: flex;
    flex-direction: column;
  }

  .contact-page-type {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .contact-page-type:nth-of-type(2) {
    margin-top: 35px;
  }

  .contact-page-type i {
  }

  .contact-page-icon {
    display: flex;
    justify-content: center;
  }

  .contact-page-icon i {
    font-size: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 16px;
    color: white;
  }

  .contact-page-type a {
    text-decoration: none;
    color: var(--accent-blue);
    margin-left: 15px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.5s;
    cursor: pointer;
  }

  .contact-page-type a:hover {
    color: var(--primary-color);
    transition: all 0.5s;
  }

  .form-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 30px;
  }

  .form-col {
    margin: 20px 30px 20px 30px;
    width: 60%;
    display: flex;
    align-items: center;
  }

  .form-col:nth-of-type(2) {
    width: 40%;
  }

  .form-col h2 {
    font-size: 35px;
    line-height: 1;
    font-weight: 800;
  }

  .form-col h3 {
    font-size: 25px;
    color: var(--red);
  }

  .form-col2 {
    margin: 20px 30px 20px 30px;
    width: 70%;
  }

  .form-col2:nth-of-type(2) {
    width: 100%;
  }

  .form-col2 h2 {
    font-size: 35px;
    line-height: 1;
    font-weight: 800;
  }

  .form-col2 h3 {
    font-size: 25px;
    color: var(--primary-color);
  }

  .form-fields {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .form-form h2 {
    margin-bottom: 20px;
    font-size: 50px;
    position: relative;
    margin: 0 auto 30px;
    font-weight: 1000;
    color: var(--secondary-color);
  }

  .form-form h2:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 75px;
    right: 105%;
    top: 50%;
    background-color: var(--primary-color);
  }

  .form-form h2:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 75px;
    left: 105%;
    top: 50%;
    background-color: var(--primary-color);
  }

  .form-form fieldset {
    border: none;
    border-radius: 5px;
    padding: 20px;
    /* background-color: rgb(240,240,240); */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-form legend {
    padding: 0 5px;
    font-size: 40px;
    font-weight: 800;
  }

  .form-form input,
  .form-form select {
    width: 40.5%;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    height: auto;
    margin: 20px 10px;
    color: black;
    padding: 10px;
  }

  .form-form input::placeholder,
  .form-form select,
  #form-message::placeholder {
    font-family: "Roboto", sans-serif;
    color: black;
    height: auto;
    width: 41%;
  }

  #form-message {
    height: 55px;
    width: 85%;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    height: 50px;
    margin: 10px;
    border-radius: 5px;
    padding: 22px 10px 10px 10px;
  }

  #form-submit {
    border: 3px solid var(--primary-color);
    background-color: #eef0fb;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.5s;
    width: 175px;
    height: 45px;
    font-weight: 15px;
    color: black;
  }

  #form-submit:hover {
    border: 2px solid black;
    background-color: var(--primary-color);
    transition: all 0.5s;
    color: var(--secondary-color);
  }

  #form-submit:hover::placeholder {
    color: white;
  }

  #service-cta {
    display: flex;
    margin: 0 auto;
    width: 287px;
  }

  #contact-form::before {
    content: "";
    display: block;
    height: 100px; /* height of your desired offset */
    margin-top: -100px; /* negative of the height */
  }

  .popup-gallery {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 60px;
  }

  .popup-gallery h3 {
    width: 100%;
  }

  .popup-gallery .popup-text {
    width: 100%;
    margin-bottom: 40px;
  }

  .popup-gallery a {
    width: calc(100% / 3 - 24px);
    margin: 12px;
  }

  .popup-gallery img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
  }

  .popup-gallery img:hover {
    box-shadow: 0px 8px 16px 2px rgba(0, 0, 0, 0.4);
    transform: scale(1.03);
  }

  img.mfp-img {
    padding: 85px 0px 40px !important;
  }
}

@media screen and (max-width: 1099px) {
  .subpage-container {
    padding: 20px;
  }

  .subpage-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0px;
  }

  .subpage-images img {
    width: 95%;
    margin: 10px auto;
  }

  #service-cta {
    display: flex;
    margin: 0 auto;
    width: 253px;
  }

  .topnav {
    width: 0%;
  }

  .topnav .topnav-content {
    opacity: 0;
  }

  .topnav.responsive .topnav-content {
    opacity: 1;
    transition: 1s opacity 0.7s;
  }

  .logo img {
    height: auto;
    max-width: 300px;
    width: auto;
  }

  .header {
    position: fixed;
    background-color: white;
    padding: 5px 0;
    z-index: 1000000;
    width: 100%;
  }

  .header a.icon {
    position: absolute;
    right: 8%;
    top: 28%;
    font-size: 30px;
    color: black;
    text-decoration: none;
  }

  .header a img {
    display: flex;
    margin: 0 auto;
    width: 150px;
  }

  .mobile-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .mobile-header-bar #mobile-logo {
    display: block;
    width: 75%;
  }

  .mobile-header-bar .closebtn {
    font-size: 40px;
    color: black;
    text-decoration: none;
    margin-left: auto;
    display: block;
  }

  #mobile-logo-a {
    width: 125px;
    margin: 0 auto;
  }

  .topnav.responsive #mobile-logo {
    width: 300px;
    margin-right: 10px;
  }

  .topnav a img.mobile-logo {
    display: flex;
    margin: 0 auto;
    pointer-events: none;
  }

  .topnav a img#fade-logo {
    opacity: 0;
  }

  .topnav.responsive a img#fade-logo {
    opacity: 1;
    transition: 1s opacity 2s;
  }

  .topnav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 0;
    background-color: white;
    color: white;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.8s;
    padding: 5px 0px;
  }

  .topnav.responsive {
    width: 100%;
  }

  .topnav.responsive
    a:not(#mobile-logo, #closeBtn, #top-phone, #top-email, #mobile-btn),
  .topnav.responsive .dropbtn1,
  .topnav.responsive .dropbtn2 {
    float: none;
    display: block;
    text-align: left;
    text-decoration: none;
    animation-delay: 0.7s;
    color: black;
    background: none;
    border: none;
    font-size: 18px;
  }

  .topnav a:not(#mobile-logo, #closeBtn, #top-phone, #top-email, #mobile-btn),
  .dropbtn1,
  .dropbtn2 {
    display: none;
  }

  .topnav a.closebtn {
    display: none;
  }

  .topnav.responsive a.closebtn {
    float: right;
    font-size: 42px;
    color: black;
    text-decoration: none;
    display: block;
    position: absolute;
    right: 32px;
    top: 15px;
  }

  .topnav.responsive a.mobile-a,
  .topnav.responsive button.dropbtn1.mobile-a,
  .topnav.responsive button.dropbtn2.mobile-a {
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid black !important;
  }

  button.dropbtn1.mobile-a i,
  button.dropbtn2.mobile-a i {
    float: right;
    color: black;
    font-size: 16px;
    margin-top: 5px;
    transition: transform 0.3s ease;
  }

  .topnav.responsive .dropdown {
    float: none;
  }

  .topnav.responsive .dropdown-content {
    position: relative;
  }

  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }

  /* Show dropdowns when active */
  .dropdown-content1.active,
  .dropdown-content2.active,
  .walkthroughs-content.active,
  .real-estate-content.active {
    display: block;
    margin: 10px 0px;
  }

  .dropdown-content1.active .dropdown-a,
  .dropdown-content2.active .dropdown-a,
  .topnav.responsive .dropdown-b,
  .topnav.responsive .dropdown-c {
    float: none;
    display: block;
    text-align: left;
    text-decoration: none;
    animation-delay: 0.7s;
    color: black;
    background: none;
    font-size: 16px !important;
    padding: 10px 10px 10px 30px;
  }

  /* Style icons inside sub-dropdown triggers */
  .topnav.responsive .dropdown-b i,
  .topnav.responsive .dropdown-c i {
    float: right;
    color: black;
    font-size: 16px;
    margin-top: 5px;
  }

  /* Rotate icons when active */
  .topnav.responsive .dropdown-b.active i,
  .topnav.responsive .dropdown-c.active i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  /* Ensure dropdown content is hidden by default */
  .walkthroughs-content,
  .real-estate-content {
    display: none;
  }

  /* Show nested dropdowns when active */
  .walkthroughs-content.active,
  .real-estate-content.active {
    display: block;
    margin: 10px 0px 0px 30px;
  }

  /* Style links inside nested dropdowns */
  .walkthroughs-content .dropdown-a,
  .real-estate-content .dropdown-a {
    float: none;
    display: block;
    text-align: left;
    text-decoration: none;
    animation-delay: 0.7s;
    color: white;
    background: none;
    font-size: 16px;
    padding: 10px 10px 10px 30px;
  }

  /* Optional: rotate icon when active */
  button.active i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .dropdown-content1,
  .dropdown-content2 {
    display: none;
  }

  .contact-page-flexbox {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    /* margin: 30px 0px; */
  }

  .contact-page-map {
    width: 95%;
    height: 400px;
    margin: 30px 0;
  }

  .contact-page-map iframe {
    width: 100%;
    height: 100%;
  }

  .contact-page-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 95%;
    margin-bottom: 20px;
  }

  .contact-page-text {
    display: flex;
    flex-direction: column;
  }

  .contact-page-text h2 {
    color: var(--secondary-color);
    font-size: 30px;
    position: relative;
  }

  .contact-page-text h2:after {
    content: "";
    background-color: var(--primary-color);
    width: 208px;
    height: 4px;
    position: absolute;
    top: 37px;
    left: 0%;
  }

  .contact-page-text h3 {
    color: var(--secondary-color);
    font-size: 18px;
  }

  .contact-page-info {
    display: flex;
    flex-direction: column;
  }

  .contact-page-type {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .contact-page-type:nth-of-type(2) {
    margin-top: 35px;
  }

  .contact-page-type i {
  }

  .contact-page-icon {
    display: flex;
    justify-content: center;
  }

  .contact-page-icon i {
    font-size: 28px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 13px;
    color: white;
  }

  .contact-page-type a {
    text-decoration: none;
    color: var(--accent-blue);
    margin-left: 15px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.5s;
    cursor: pointer;
  }

  .contact-page-type a:hover {
    color: var(--primary-color);
    transition: all 0.5s;
  }

  .form-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .form-col {
    margin: 20px 0;
    width: 100%;
  }

  .form-col h2 {
    font-size: 35px;
    line-height: 1;
    font-weight: 800;
  }

  .form-col h3 {
    font-size: 25px;
    color: var(--primary-color);
  }

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

  .form-col2 {
    margin: 20px 0;
    width: 100%;
  }

  .form-col2 h2 {
    font-size: 35px;
    line-height: 1;
    font-weight: 800;
  }

  .form-col2 h3 {
    font-size: 25px;
    color: var(--primary-color);
  }

  .form-col2 li {
    margin-bottom: 10px;
  }

  .form-fields {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .form-form h2 {
    margin-bottom: 20px;
    font-size: 40px;
    position: relative;
    margin: 0 auto 30px;
    font-weight: 1000;
    color: var(--secondary-color);
  }

  .form-form h2:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 30px;
    right: 105%;
    top: 50%;
    background-color: var(--primary-color);
  }

  .form-form h2:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 30px;
    left: 105%;
    top: 50%;
    background-color: var(--primary-color);
  }

  .form-form fieldset {
    border: none;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px;
  }

  .form-form legend {
    padding: 0 5px;
    font-size: 40px;
    font-weight: 800;
  }

  .form-form input,
  .form-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    padding: 10px;
    width: 90%;
    margin: 20px auto;
    color: black;
    border-radius: 5px;
    font-size: 16px;
  }

  .form-form input::placeholder,
  .form-form select,
  #form-message::placeholder {
    font-family: "Roboto", sans-serif;
    color: var(--primary-color);
    height: auto;
    width: 90%;
  }

  #form-message {
    height: 55px;
    width: 90%;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 25px 10px 10px 10px;
    font-size: 14px;
    font-weight: 550;
    margin: 0 auto;
  }

  #form-submit {
    border: 3px solid var(--primary-color);
    background-color: #eef0fb;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 0.5s;
    width: 175px;
    height: 45px;
    color: black;
    margin-top: 30px;
  }

  #form-submit:hover {
    border: 2px solid black;
    background-color: var(--primary-color);
    transition: all 0.5s;
    color: var(--gold);
  }

  #form-submit:hover::placeholder {
    color: white;
  }

  #contact-form::before {
    content: "";
    display: block;
    height: 150px; /* height of your desired offset */
    margin-top: -100px; /* negative of the height */
  }

  .popup-gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .popup-gallery h3 {
    width: 100%;
    text-align: center;
  }

  .popup-gallery .popup-text {
    width: 100%;
    margin-bottom: 40px;
  }

  .popup-gallery img {
    margin: 0 7.5px 10px;
    width: 300px;
    height: 225px;
    object-fit: cover;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .benefits-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card,
  .service-card {
    padding: 2rem;
    margin: 10px 0px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: start;
    margin-left: 45px;
  }
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-card {
    padding: 2rem;
  }

  .coverage-banner {
    padding: 2rem;
  }

  .coverage-banner h3 {
    font-size: 1.5rem;
  }

  .contact-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .subpage-section {
    padding: 3rem 0;
  }

  .subpage-container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

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

  .size-grid {
    flex-direction: column;
    align-items: center;
  }

  .size-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .benefit-card,
  .service-card {
    padding: 1.5rem;
    margin: 10px 0px;
  }
  .location-card {
    padding: 1.5rem;
  }

  .location-header {
    flex-direction: column;
    text-align: center;
  }

  .location-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
