/* ==========================================================================
   LD Real Estates - Custom Stylesheet (Vanilla CSS3)
   ========================================================================== */

/* CSS Variables */
:root {
  --primary: #104C49;          /* Deep Teal (from logo letters, darkened for contrast) */
  --primary-light: #166864;    /* Medium Teal */
  --secondary: #F39C12;        /* Vibrant Orange (from logo background) */
  --secondary-text: #C87500;   /* Darker Orange/Gold for text on light backgrounds (WCAG AA) */
  --secondary-light-text: #FFB833; /* Lighter Gold for text on dark backgrounds (WCAG AA) */
  --secondary-hover: #D6800C;  /* Darker Orange/Amber */
  --secondary-hover: #D6800C;  /* Darker Orange/Amber */
  --accent: #25D366;           /* WhatsApp Green */
  --accent-blue: #0078FF;      /* Call Blue */
  --text-dark: #1E293B;        /* Slate 800 */
  --text-light: #F8FAFC;       /* Slate 50 */
  --text-muted: #64748B;       /* Slate 500 */
  --bg-light: #F0F6F5;         /* Very Light Teal Tinted Background */
  --bg-white: #FFFFFF;
  --bg-dark: #082422;          /* Very Dark Teal for Footer/Dark sections */
  --border-color: #E2E8F0;     /* Slate 200 */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', var(--font-sans);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Accessibility Focus Outline styling */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--secondary-text);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

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

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

.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--accent);
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20b858;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-call {
  background-color: var(--accent-blue);
  color: white;
}

.btn-call:hover {
  background-color: #0066da;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  background-color: rgba(10, 25, 49, 0.03);
  transform: translateY(-2px);
}

/* Stars Rating */
.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #F1C40F;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-placeholder {
  background-color: #FEE2E2;
  color: #EF4444;
  border: 1px dashed #FCA5A5;
}

.badge-verified {
  background-color: #D1FAE5;
  color: #065F46;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--primary);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-weight: 500;
  color: var(--primary);
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-text);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Brand logo matched buttons for Desktop Navbar */
.nav-actions .btn-call {
  background-color: var(--secondary);
  color: var(--primary);
}

.nav-actions .btn-call:hover {
  background-color: var(--secondary-hover);
  color: var(--primary);
}

.nav-actions .btn-whatsapp {
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--primary-light);
}

.nav-actions .btn-whatsapp:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
}

/* Brand logo matched buttons for Mobile Drawer */
.nav-actions-mobile .btn-call {
  background-color: var(--secondary);
  color: var(--primary);
}

.nav-actions-mobile .btn-call:hover {
  background-color: var(--secondary-hover);
  color: var(--primary);
}

.nav-actions-mobile .btn-whatsapp {
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--primary-light);
}

.nav-actions-mobile .btn-whatsapp:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
}

.nav-actions-mobile {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1100;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(16, 76, 73, 0.03) 0%, rgba(255, 255, 255, 1) 90%);
  position: relative;
}

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

.hero-content {
  max-width: 650px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-rating-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(4px);
  background-color: rgba(10, 25, 49, 0.9);
}

.hero-badge-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-title);
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-feature-box {
  background-color: var(--bg-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.about-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--secondary);
}

.about-icon {
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-feature-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.about-feature-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-content-text {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-highlight {
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  max-width: 400px;
}

.owner-avatar {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.owner-info h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.owner-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.service-card:hover::before {
  background-color: var(--secondary);
}

.service-icon-wrapper {
  width: 65px;
  height: 65px;
  background-color: rgba(243, 156, 18, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.service-icon {
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--secondary);
  transform: scale(1.1);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Featured Properties
   ========================================================================== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.property-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.property-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.property-content {
  padding: 1.5rem;
}

.property-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.property-location i {
  color: var(--secondary);
}

.property-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.property-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-detail-item i {
  color: var(--primary);
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.property-price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.price-placeholder {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
}

.why-num-box {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--secondary-light-text);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.why-item-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why-item-content p {
  font-size: 0.95rem;
}

.why-testimonial-box {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.why-testimonial-box::before {
  content: '"';
  position: absolute;
  top: -2rem;
  right: 1rem;
  font-size: 12rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.why-testimonial-title {
  color: var(--secondary-light-text);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.why-testimonial-quote {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 300;
}

.why-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-circle {
  width: 45px;
  height: 45px;
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-title);
}

.author-meta h4 {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.author-meta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  padding: 1rem;
}

.review-card {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}

.review-user-info {
  margin-bottom: 1.5rem;
}

.review-user-name {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.review-user-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-rating-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.owner-reply-box {
  background-color: var(--bg-light);
  border-left: 3px solid var(--secondary);
  padding: 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
  margin-top: 1.5rem;
}

.owner-reply-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.owner-reply-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--secondary);
  width: 25px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(10, 25, 49, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-details p, .contact-info-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-details a:hover {
  color: var(--secondary);
}

.email-placeholder {
  color: #EF4444 !important;
  font-style: italic;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-box {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-submit-btn {
  width: 100%;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-status.error {
  display: block;
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.footer-brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-light);
}

.footer-brand-name span {
  color: var(--secondary);
}

.footer-desc {
  font-size: 0.9rem;
  color: #94A3B8; /* lighter Slate */
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
}

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

.footer-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-link:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 3px;
}

.footer-contact-item p, .footer-contact-item a {
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-grid {
    gap: 2rem;
  }
  
  .about-grid, .why-grid {
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Mobile Header Navigation */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1.5rem;
    gap: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: left 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-actions {
    display: none; /* Hide in main navbar, put inside mobile menu if needed */
  }
  
  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  /* Hero section adjustments */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-rating {
    justify-content: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-img {
    height: 350px;
  }
  
  /* About section adjustments */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-grid > div:first-child {
    order: 2; /* Move image/features below text */
  }
  
  .owner-card {
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Why Choose Us adjustments */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Contact adjustment */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
}
