/* Republic of Nature - Custom Styles */

/* ===== NAVBAR ===== */
.ron-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.75rem 0;
}

.ron-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ron-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ron-nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.ron-nav-link:hover,
.ron-nav-link.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.ron-navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ron-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.ron-phone-link:hover {
  opacity: 0.8;
}

.ron-enquire-btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

.ron-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.ron-mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.ron-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.ron-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ron-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.ron-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.ron-phone-text {
  display: none;
}

@media (min-width: 481px) {
  .ron-phone-text {
    display: inline;
  }
}

.ron-enquire-desktop {
  display: none;
}

/* Mobile Menu */
.ron-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ron-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.ron-mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.ron-mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  /* height: 100%; */
  background: var(--background);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.ron-mobile-menu.active .ron-mobile-menu-content {
  transform: translateX(0);
}

.ron-mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.375rem;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ron-mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.ron-mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ron-mobile-menu-links li {
  margin-bottom: 0.5rem;
}

.ron-mobile-menu-links a {
  display: block;
  padding: 1rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ron-mobile-menu-links a:hover,
.ron-mobile-menu-links a.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

/* ===== HERO SECTION ===== */
.ron-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--background) 0%, rgba(20, 20, 20, 1) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ron-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ron-hero-content {
  max-width: 700px;
}

.ron-hero-subtitle {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ron-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.ron-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ron-btn-large {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ron-btn-video {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ron-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.ron-btn-video:hover .ron-play-icon {
  background: var(--gold);
  color: var(--background);
}

.ron-hero-price {
  color: var(--foreground-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.ron-hero-price strong {
  color: var(--gold);
  font-weight: 600;
}

.ron-hero-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ron-hero-thumb {
  border: 3px solid var(--gold);
  border-radius: 0.375rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ron-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ron-hero-thumb:hover img {
  transform: scale(1.1);
}

/* ===== LEAD FORM ===== */
.ron-hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.ron-lead-form {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
}

.ron-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.ron-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ron-form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.ron-form-icon {
  position: absolute;
  left: 1rem;
  color: var(--gold);
  pointer-events: none;
  z-index: 1;
}

.ron-form-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 0.375rem;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.ron-form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.ron-form-input::placeholder {
  color: var(--foreground-muted);
}

.ron-phone-group {
  display: flex;
  gap: 0.5rem;
}

.ron-country-select {
  width: 100px;
  padding: 0.875rem 0.5rem 0.875rem 3rem;
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 0.375rem;
  color: var(--foreground);
  font-size: 0.75rem;
  cursor: pointer;
}

.ron-country-select:focus {
  outline: none;
  border-color: var(--gold);
}

.ron-phone-input {
  flex: 1;
  padding-left: 1rem;
}

.ron-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== INFO SECTION ===== */
.ron-info-section {
  background: rgba(15, 15, 15, 1);
  padding: 2rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ron-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ron-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.ron-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ron-info-text {
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.ron-info-text span {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* ===== OVERVIEW SECTION ===== */
.ron-overview {
  padding: 5rem 0;
  background: var(--background);
}

.ron-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ron-section-subtitle {
  display: inline-block;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ron-section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ron-overview-text {
  color: var(--foreground-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ron-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ron-spec-item {
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold);
}

.ron-spec-label {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.ron-spec-value {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.ron-overview-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ron-overview-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.ron-overview-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ron-counter-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.ron-counter-box h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.25rem;
}

.ron-counter-box span {
  color: var(--foreground);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== AMENITIES SECTION ===== */
.ron-amenities {
  padding: 5rem 0;
  background: rgba(15, 15, 15, 1);
}

.ron-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ron-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ron-amenity-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.ron-amenity-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.ron-amenity-card p {
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.ron-amenity-wide {
  grid-column: span 2;
}

.ron-section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===== GALLERY SECTION ===== */
.ron-gallery {
  padding: 4rem 0;
  background: var(--background);
  overflow: hidden;
}

.ron-gallery-slider {
  position: relative;
  overflow: hidden;
}

.ron-gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.ron-gallery-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  border-radius: 0.5rem;
  overflow: hidden;
}

.ron-gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ron-gallery-slide:hover img {
  transform: scale(1.05);
}

.ron-gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.ron-gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.ron-gallery-btn:hover {
  background: var(--gold);
  color: var(--background);
}

.ron-gallery-scrollbar {
  margin-top: 2rem;
  padding: 0 2rem;
}

.ron-gallery-scrollbar-track {
  height: 4px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 2px;
  position: relative;
}

.ron-gallery-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: var(--gold);
  border-radius: 2px;
  transition: left 0.3s ease;
}

/* ===== FLOOR PLAN SECTION ===== */
.ron-floorplan {
  padding: 5rem 0;
  background: rgba(15, 15, 15, 1);
}

.ron-tabs {
  margin-top: 2rem;
}

.ron-tab-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.ron-tab-btn {
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ron-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ron-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--background);
}

.ron-tab-pane {
  display: none;
}

.ron-tab-pane.active {
  display: block;
}

.ron-floorplan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ron-floorplan-content {
  padding: 2rem;
}

.ron-floorplan-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.ron-floorplan-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.ron-floorplan-content p {
  color: var(--foreground-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.ron-features-list li {
  color: var(--foreground);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.ron-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(-45deg);
}

.ron-floorplan-image {
  border-radius: 0.5rem;
  overflow: hidden;
}

.ron-floorplan-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.ron-floorplan-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== LOCATION SECTION ===== */
.ron-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ron-location-content {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--background) 100%);
  padding: 4rem;
}

.ron-location-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.ron-location-desc {
  color: var(--foreground-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ron-location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.ron-location-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ron-location-time {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  min-width: 60px;
}

.ron-location-name {
  color: var(--foreground);
  font-size: 0.875rem;
}

.ron-location-map {
  min-height: 500px;
}

.ron-location-map iframe {
  width: 100%;
  height: 100%;
}

/* ===== CONTACT SECTION ===== */
.ron-contact {
  padding: 5rem 0;
  background: var(--background);
}

.ron-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.ron-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ron-contact-intro {
  color: var(--foreground-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ron-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ron-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ron-contact-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.25rem;
}

.ron-contact-value {
  color: var(--foreground);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.ron-contact-value:hover {
  color: var(--gold);
}

.ron-contact-form-wrapper {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.ron-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ron-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ron-contact-form .ron-form-group {
  display: block;
}

.ron-contact-form .ron-form-input {
  padding: 0.875rem 1rem;
}

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

/* ===== FOOTER ===== */
.ron-footer {
  background: rgba(15, 15, 15, 1);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 0;
}

.ron-footer-content {
  text-align: center;
}

.ron-footer-text {
  color: var(--foreground-secondary);
  font-size: 0.875rem;
  max-width: 600px;
  margin: 1.5rem auto;
  line-height: 1.6;
}

.ron-footer-copyright {
  color: var(--foreground-muted);
  font-size: 0.75rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .ron-nav-links {
    display: none;
  }
  
  .ron-mobile-toggle {
    display: flex;
  }
  
  .ron-enquire-desktop {
    display: inline-flex;
  }
  
  .ron-hero-title {
    font-size: 3rem;
  }
  
  .ron-hero-grid {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .ron-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ron-hero-form-wrapper {
    justify-content: center;
  }
  
  .ron-lead-form {
    max-width: 100%;
  }
  
  .ron-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ron-overview-grid,
  .ron-floorplan-grid,
  .ron-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .ron-location {
    grid-template-columns: 1fr;
  }
  
  .ron-location-map {
    min-height: 400px;
  }
  
  .ron-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ron-amenity-wide {
    grid-column: span 1;
  }
  
  .ron-gallery-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .ron-hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .ron-hero-title {
    font-size: 2.5rem;
  }
  
  .ron-hero-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ron-hero-buttons {
    flex-direction: column;
  }
  
  .ron-info-grid {
    grid-template-columns: 1fr;
  }
  
  .ron-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ron-overview-images {
    grid-template-columns: 1fr;
  }
  
  .ron-amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .ron-gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .ron-gallery-slide img {
    height: 300px;
  }
  
  .ron-tab-buttons {
    flex-direction: column;
  }
  
  .ron-floorplan-actions {
    flex-direction: column;
  }
  
  .ron-location-content {
    padding: 2rem;
  }
  
  .ron-form-row {
    grid-template-columns: 1fr;
  }
  
  .ron-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .ron-enquire-desktop {
    display: none;
  }
  
  .ron-navbar-actions {
    gap: 0.5rem;
  }
  
  .ron-navbar-inner {
    gap: 1rem;
  }
  
  .logo img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .ron-navbar-actions {
    gap: 0.5rem;
  }
  
  .ron-phone-link {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  
  .ron-phone-link svg {
    width: 14px;
    height: 14px;
  }
  
  .ron-hero-title {
    font-size: 2rem;
  }
  
  .ron-hero-thumbs {
    grid-template-columns: 1fr;
  }
  
  .ron-phone-group {
    flex-direction: column;
  }
  
  .ron-country-select {
    width: 100%;
    padding-left: 1rem;
  }
  
  .ron-specs-grid {
    grid-template-columns: 1fr;
  }
}
