.elementor-318 .elementor-element.elementor-element-7ffd126{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-318 .elementor-element.elementor-element-7cecf60{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-318 .elementor-element.elementor-element-1c83e63{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-318 .elementor-element.elementor-element-9782952{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-318 .elementor-element.elementor-element-2294f5b{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-318 .elementor-element.elementor-element-dc8d8ad{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-318 .elementor-element.elementor-element-1c6ca77{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-7cecf60 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Background & Video Setup */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay covering the background video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.6) 0%, 
    rgba(26, 26, 26, 0.4) 50%, 
    rgba(26, 26, 26, 0.2) 100%
  );
  z-index: 2;
}

/* Typography & Content Layout */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 123, 32, 0.15);
  border: 1px solid rgba(160, 123, 32, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease-out;
}

.hero-badge span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  color: #FAF8F5;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title span {
  color: #a07b20;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250, 248, 245, 0.8);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Button & Container Centering Fixes */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #a07b20;
  color: #FAF8F5;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid #a07b20;
}

.btn-primary:hover {
  background: #84651a;
  border-color: #84651a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(160, 123, 32, 0.3);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 248, 245, 0.6);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* Animation Keyframes */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .hero-buttons {
    width: 100%;
    max-width: 300px;
  }
  .btn-primary {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1c83e63 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

.about-section {
  padding: 100px 20px;
  background: #FAF8F5;
  font-family: 'Inter', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(26, 26, 26, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #a07b20;
  color: #FAF8F5;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(160, 123, 32, 0.3);
  z-index: 2;
  text-align: center;
}

.about-badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 35px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 20px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a07b20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-label svg {
  width: 20px;
  height: 20px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 43px);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-description {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #E8E4E0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(160, 123, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07b20;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 700;
  color: #1A1A1A;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #6B6B6B;
}

@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content { padding-left: 0; }
  .about-image { height: 400px; }
  .about-badge { 
    right: 20px; 
    bottom: -20px; 
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9782952 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

.properties-section {
  padding: 100px 20px;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.properties-container {
  max-width: 1200px;
  margin: 0 auto;
}

.properties-header {
  text-align: center;
  margin-bottom: 60px;
}

.properties-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a07b20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.properties-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.properties-subtitle {
  font-size: 18px;
  color: #6B6B6B;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.property-card {
  background: #FAF8F5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #E8E4E0;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(26, 26, 26, 0.12);
}

.property-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-badge.available { background: #22C55E; color: #FFFFFF; }
.property-badge.limited { background: #F59E0B; color: #FFFFFF; }
.property-badge.sold { background: #6B6B6B; color: #FFFFFF; }

.property-content {
  padding: 24px;
}

.property-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.property-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.property-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6B6B6B;
}

.property-meta-item svg {
  width: 16px;
  height: 16px;
  color: #a07b20;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.property-feature {
  background: rgba(160, 123, 32, 0.1);
  color: #a07b20;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #E8E4E0;
}

.property-status {
  display: flex;
  flex-direction: column;
}

.status-label {
  font-size: 12px;
  color: #6B6B6B;
  text-transform: uppercase;
}

.status-value {
  font-weight: 600;
  color: #1A1A1A;
}

.property-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #FAF8F5;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.property-btn:hover {
  background: #a07b20;
}

@media (max-width: 968px) { .properties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .properties-grid { grid-template-columns: 1fr; }
  .property-footer { flex-direction: row; align-items: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2294f5b */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

.location-section {
  padding: 100px 20px;
  background: #FAF8F5;
  font-family: 'Inter', sans-serif;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-content {
  padding-right: 20px;
}

.location-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a07b20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.location-label svg {
  width: 20px;
  height: 20px;
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.location-description {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 32px;
}

.nearby-places {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.nearby-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E8E4E0;
  transition: all 0.3s ease;
}

.nearby-item:hover {
  border-color: #a07b20;
  box-shadow: 0 8px 24px rgba(160, 123, 32, 0.1);
}

.nearby-icon {
  width: 48px;
  height: 48px;
  background: rgba(160, 123, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07b20;
  flex-shrink: 0;
}

.nearby-icon svg {
  width: 24px;
  height: 24px;
}

.nearby-name {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.nearby-distance {
  font-size: 13px;
  color: #6B6B6B;
}

.location-map-wrapper {
  position: relative;
}

.location-map {
  width: 100%;
  height: 550px; /* Increased slightly for better iframe view */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(26, 26, 26, 0.15);
  background: #EEE; /* Loader color */
}

/* Ensure Iframe covers the full area */
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-pin {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #FFFFFF;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.location-pin-icon {
  width: 48px;
  height: 48px;
  background: #a07b20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.location-pin-icon svg {
  width: 24px;
  height: 24px;
}

.location-pin-text {
  flex: 1;
}

.location-pin-title {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 16px;
  margin-bottom: 4px;
}

.location-pin-address {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.4;
}

.location-pin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #FAF8F5;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.location-pin-btn:hover {
  background: #a07b20;
}

@media (max-width: 968px) {
  .location-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-content { padding-right: 0; }
  .location-map { height: 450px; }
}

@media (max-width: 640px) {
  .nearby-places { grid-template-columns: 1fr; }
  .location-pin {
    flex-direction: column;
    text-align: center;
    position: relative; /* Moves below map on mobile for better visibility */
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 20px;
  }
  .location-pin-btn {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc8d8ad */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

.uni-section {
  padding: 100px 20px;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
}
.uni-wrap { max-width: 1200px; margin: 0 auto; }

.uni-head { text-align: center; margin-bottom: 48px; }
.uni-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #a07b20; font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.uni-eyebrow svg { width: 18px; height: 18px; }
.uni-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 600;
  color: #1A1A1A; margin-bottom: 16px;
}
.uni-sub { font-size: 18px; color: #6B6B6B; max-width: 760px; margin: 0 auto; line-height: 1.6; }

/* stats */
.uni-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.uni-stat {
  background: #FAF8F5; border: 1px solid #ECE6DD; border-radius: 100px;
  padding: 10px 22px; display: flex; align-items: baseline; gap: 8px;
}
.uni-stat b { font-family: 'Playfair Display', serif; font-size: 22px; color: #a07b20; font-weight: 700; }
.uni-stat span { font-size: 13px; color: #6B6B6B; font-weight: 500; }

/* tabs */
.uni-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 44px 0 36px;
}
.uni-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px; cursor: pointer;
  background: #FAF8F5; border: 1px solid #E8E4E0; color: #4A4A4A;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  transition: all .3s ease;
}
.uni-tab svg { width: 16px; height: 16px; }
.uni-tab:hover { border-color: #a07b20; color: #a07b20; }
.uni-tab.active { background: #1A1A1A; border-color: #1A1A1A; color: #FAF8F5; }
.uni-tab.active:hover { color: #FAF8F5; }
.uni-tab .uni-tab-count {
  font-size: 12px; font-weight: 600; padding: 1px 8px; border-radius: 100px;
  background: rgba(160,123,32,0.14); color: #a07b20;
}
.uni-tab.active .uni-tab-count { background: rgba(255,255,255,0.18); color: #FAF8F5; }

/* grid */
.uni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.uni-card {
  position: relative; display: flex; align-items: center; gap: 18px;
  background: #FAF8F5; border: 1px solid #E8E4E0; border-radius: 16px;
  padding: 22px 24px; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.uni-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent, #a07b20); transform: scaleY(0); transform-origin: top;
  transition: transform .35s ease;
}
.uni-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(26,26,26,0.10); border-color: transparent; }
.uni-card:hover::before { transform: scaleY(1); }

.uni-card-ring {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft, rgba(160,123,32,0.12));
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--accent, #a07b20); text-align: center; line-height: 1;
}
.uni-card-ring .km-num { font-size: 18px; }
.uni-card-ring .km-unit { font-size: 10px; font-weight: 600; color: #9A9286; font-family: 'Inter', sans-serif; }

.uni-card-body { flex: 1; min-width: 0; }
.uni-card-name { font-size: 16px; font-weight: 700; color: #1A1A1A; line-height: 1.3; margin-bottom: 3px; }
.uni-card-full { font-size: 13px; color: #8A8276; line-height: 1.45; margin-bottom: 10px; }
.uni-card-drive {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--soft, rgba(160,123,32,0.12)); color: var(--accent, #a07b20);
  font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 100px;
}
.uni-card-drive svg { width: 13px; height: 13px; }

/* accent themes */
.t-public  { --accent: #a07b20; --soft: rgba(160,123,32,0.12); }
.t-private { --accent: #1f6f5c; --soft: rgba(31,111,92,0.12); }
.t-college { --accent: #8a5a2b; --soft: rgba(138,90,43,0.12); }
.t-cyber   { --accent: #3a5a8a; --soft: rgba(58,90,138,0.12); }
.t-near    { --accent: #99506b; --soft: rgba(153,80,107,0.12); }

.uni-card.hide { display: none; }

/* group label that appears in "All" view */
.uni-group-label {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 14px;
  margin-top: 14px;
}
.uni-group-label:first-child { margin-top: 0; }
.uni-group-label h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: #1A1A1A;
}
.uni-group-label .gl-ic {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--soft); color: var(--accent);
}
.uni-group-label .gl-ic svg { width: 20px; height: 20px; }
.uni-group-label .gl-line { flex: 1; height: 1px; background: #E5DED3; }
.uni-group-label.hide { display: none; }

@media (max-width: 900px) { .uni-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .uni-grid { grid-template-columns: 1fr; } }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1c6ca77 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

.contact-section {
  padding: 100px 20px;
  background: #FAF8F5;
  font-family: 'Inter', sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a07b20; 
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-description {
  font-size: 18px;
  color: #4A4A4A;
  line-height: 1.8;
}

/* THE HORIZONTAL DESIGN BAR */
.contact-action-bar {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid #E8E4E0;
}

.bar-item {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s ease;
}

.location-side {
  border-right: 1px solid #F0EBE5;
}

.contact-side {
  background: #FAF8F5; /* Subtle contrast */
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07b20;
  box-shadow: 0 8px 20px rgba(160, 123, 32, 0.1);
  flex-shrink: 0;
}

.info-text-wrapper {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a07b20;
  margin-bottom: 4px;
}

.info-value {
  font-size: 17px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.4;
  text-decoration: none;
}

.cta-link {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: #a07b20;
}

@media (max-width: 900px) {
  .contact-action-bar {
    flex-direction: column;
  }
  .location-side {
    border-right: none;
    border-bottom: 1px solid #F0EBE5;
  }
}/* End custom CSS */