/*
Theme Name: Modern Living Spaces
Theme URI: https://modernliving.com
Author: Modern Living Team
Author URI: https://modernliving.com
Description: A premium real estate WordPress theme designed for Elementor. Features stunning property showcases, project listings, and enquiry forms with modern animations and responsive design.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: modern-living
Tags: real-estate, property, elementor, responsive, modern, premium
*/

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Reset
   2. Base Typography
   3. Layout & Grid
   4. Components
   5. Header & Navigation
   6. Footer
   7. Elementor Widgets
   8. Responsive
   ============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */
:root {
  /* Brand Colors */
  --ml-yellow: #f9e492;
  --ml-coral: #f9a78e;
  --ml-black: #151515;
  --ml-white: #ffffff;
  --ml-gray: #f6f6f6;
  --ml-gray-dark: #333333;
  --ml-text: #151515;
  --ml-text-light: #666666;
  
  /* Spacing */
  --ml-section-padding: 80px;
  --ml-container-width: 1400px;
  --ml-container-padding: 20px;
  
  /* Typography */
  --ml-font-display: 'Montserrat', sans-serif;
  --ml-font-body: 'Inter', sans-serif;
  
  /* Border Radius */
  --ml-radius-sm: 8px;
  --ml-radius-md: 12px;
  --ml-radius-lg: 16px;
  --ml-radius-xl: 24px;
  --ml-radius-full: 9999px;
  
  /* Shadows */
  --ml-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --ml-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --ml-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --ml-transition-fast: 0.2s ease;
  --ml-transition-normal: 0.3s ease;
  --ml-transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ml-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ml-text);
  background-color: var(--ml-white);
  overflow-x: hidden;
}

/* ============================================
   2. BASE TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ml-font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ml-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--ml-text-light);
}

a {
  color: var(--ml-coral);
  text-decoration: none;
  transition: color var(--ml-transition-fast);
}

a:hover {
  color: var(--ml-black);
}

/* ============================================
   3. LAYOUT & GRID
   ============================================ */
.ml-container {
  width: 100%;
  max-width: var(--ml-container-width);
  margin: 0 auto;
  padding: 0 var(--ml-container-padding);
}

.ml-section {
  padding: var(--ml-section-padding) 0;
}

.ml-section-gray {
  background-color: var(--ml-gray);
}

.ml-section-dark {
  background-color: var(--ml-black);
  color: var(--ml-white);
}

.ml-section-dark h1,
.ml-section-dark h2,
.ml-section-dark h3,
.ml-section-dark h4,
.ml-section-dark h5,
.ml-section-dark h6 {
  color: var(--ml-white);
}

/* Grid */
.ml-grid {
  display: grid;
  gap: 24px;
}

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

@media (max-width: 1024px) {
  .ml-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ml-grid-2,
  .ml-grid-3,
  .ml-grid-4 { grid-template-columns: 1fr; }
  
  :root {
    --ml-section-padding: 60px;
  }
}

/* ============================================
   4. COMPONENTS
   ============================================ */

/* Buttons */
.ml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ml-font-display);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--ml-radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--ml-transition-normal);
}

.ml-btn-primary {
  background-color: var(--ml-black);
  color: var(--ml-white);
}

.ml-btn-primary:hover {
  background-color: var(--ml-coral);
  color: var(--ml-white);
  box-shadow: var(--ml-shadow-lg);
}

.ml-btn-secondary {
  background-color: var(--ml-white);
  color: var(--ml-black);
  border: 1px solid rgba(21, 21, 21, 0.1);
}

.ml-btn-secondary:hover {
  background-color: var(--ml-gray);
  border-color: rgba(21, 21, 21, 0.2);
}

.ml-btn-accent {
  background-color: var(--ml-yellow);
  color: var(--ml-black);
}

.ml-btn-accent:hover {
  background-color: var(--ml-coral);
  color: var(--ml-white);
}

/* Cards */
.ml-card {
  background: var(--ml-white);
  border-radius: var(--ml-radius-xl);
  overflow: hidden;
  box-shadow: var(--ml-shadow-sm);
  transition: all var(--ml-transition-normal);
}

.ml-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ml-shadow-lg);
}

.ml-card-image {
  position: relative;
  overflow: hidden;
}

.ml-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ml-transition-slow);
}

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

.ml-card-content {
  padding: 24px;
}

/* Badges */
.ml-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--ml-radius-full);
}

.ml-badge-yellow {
  background-color: var(--ml-yellow);
  color: var(--ml-black);
}

.ml-badge-light {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--ml-black);
}

/* Section Label */
.ml-section-label {
  display: block;
  font-family: var(--ml-font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ml-coral);
  margin-bottom: 16px;
}

/* Form Styles */
.ml-form input,
.ml-form textarea,
.ml-form select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--ml-font-body);
  font-size: 14px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--ml-radius-md);
  background: var(--ml-white);
  transition: all var(--ml-transition-fast);
}

.ml-form input:focus,
.ml-form textarea:focus,
.ml-form select:focus {
  outline: none;
  border-color: var(--ml-coral);
  box-shadow: 0 0 0 3px rgba(249, 167, 142, 0.2);
}

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

/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.ml-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--ml-transition-normal);
}

.ml-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--ml-shadow-sm);
  padding: 12px 0;
}

.ml-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ml-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ml-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--ml-black);
  border-radius: var(--ml-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ml-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ml-yellow);
}

.ml-logo-text {
  font-family: var(--ml-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ml-black);
}

/* Navigation */
.ml-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ml-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ml-text-light);
  position: relative;
}

.ml-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ml-coral);
  transition: width var(--ml-transition-fast);
}

.ml-nav a:hover {
  color: var(--ml-black);
}

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

.ml-header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ml-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ml-text-light);
}

.ml-phone-link:hover {
  color: var(--ml-black);
}

/* Mobile Menu */
.ml-mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.ml-mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ml-black);
  transition: all var(--ml-transition-fast);
}

@media (max-width: 1024px) {
  .ml-nav,
  .ml-header-cta .ml-phone-link {
    display: none;
  }
  
  .ml-mobile-menu-btn {
    display: flex;
  }
}

/* ============================================
   6. FOOTER
   ============================================ */
.ml-footer {
  background: var(--ml-black);
  color: var(--ml-white);
  padding: 80px 0 40px;
}

.ml-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.ml-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 24px;
}

.ml-footer-social {
  display: flex;
  gap: 12px;
}

.ml-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--ml-radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ml-white);
  transition: all var(--ml-transition-fast);
}

.ml-footer-social a:hover {
  background: var(--ml-yellow);
  color: var(--ml-black);
}

.ml-footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ml-white);
  margin-bottom: 24px;
}

.ml-footer-links {
  list-style: none;
}

.ml-footer-links li {
  margin-bottom: 12px;
}

.ml-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.ml-footer-links a:hover {
  color: var(--ml-yellow);
}

.ml-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ml-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .ml-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .ml-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   7. ELEMENTOR WIDGETS
   ============================================ */

/* Hero Widget */
.ml-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ml-gray);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.ml-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ml-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(249, 228, 146, 0.2), transparent);
}

.ml-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: linear-gradient(to top, rgba(249, 167, 142, 0.2), transparent);
}

.ml-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ml-hero-content h1 {
  margin-bottom: 24px;
}

.ml-hero-content h1 span {
  background: linear-gradient(135deg, var(--ml-yellow), var(--ml-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ml-hero-content p {
  font-size: 18px;
  margin-bottom: 32px;
}

.ml-hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.ml-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.ml-hero-stat-value {
  font-family: var(--ml-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ml-black);
}

.ml-hero-stat-label {
  font-size: 14px;
  color: var(--ml-text-light);
}

.ml-hero-images {
  position: relative;
}

.ml-hero-main-image {
  border-radius: var(--ml-radius-xl);
  overflow: hidden;
  box-shadow: var(--ml-shadow-lg);
}

.ml-hero-floating-image {
  position: absolute;
  border-radius: var(--ml-radius-lg);
  overflow: hidden;
  box-shadow: var(--ml-shadow-lg);
}

.ml-hero-floating-image-1 {
  width: 160px;
  left: -60px;
  top: 25%;
  animation: float 4s ease-in-out infinite;
}

.ml-hero-floating-image-2 {
  width: 140px;
  right: -20px;
  bottom: 25%;
  animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .ml-hero-inner {
    grid-template-columns: 1fr;
  }
  
  .ml-hero-images {
    order: -1;
  }
  
  .ml-hero-floating-image {
    display: none;
  }
}

/* Projects Grid Widget */
.ml-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ml-project-card {
  background: var(--ml-white);
  border-radius: var(--ml-radius-xl);
  overflow: hidden;
  box-shadow: var(--ml-shadow-sm);
  transition: all var(--ml-transition-normal);
}

.ml-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ml-shadow-lg);
}

.ml-project-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ml-project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ml-transition-slow);
}

.ml-project-card:hover .ml-project-card-image img {
  transform: scale(1.05);
}

.ml-project-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
}

.ml-project-card-content {
  padding: 24px;
}

.ml-project-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ml-text-light);
  margin-bottom: 8px;
}

.ml-project-card-title {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color var(--ml-transition-fast);
}

.ml-project-card:hover .ml-project-card-title {
  color: var(--ml-coral);
}

.ml-project-card-description {
  font-size: 14px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ml-project-card-features {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--ml-text-light);
  margin-bottom: 16px;
}

.ml-project-card-feature {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ml-project-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ml-project-card-amenity {
  padding: 4px 10px;
  background: var(--ml-gray);
  border-radius: var(--ml-radius-full);
  font-size: 12px;
  color: var(--ml-text-light);
}

.ml-project-card-buttons {
  display: flex;
  gap: 12px;
}

.ml-project-card-buttons .ml-btn {
  flex: 1;
  padding: 12px 20px;
}

@media (max-width: 1024px) {
  .ml-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ml-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Accordion Widget */
.ml-services-accordion {
  display: flex;
  gap: 16px;
  height: 500px;
}

.ml-service-item {
  flex: 1;
  position: relative;
  border-radius: var(--ml-radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--ml-transition-slow);
}

.ml-service-item:hover,
.ml-service-item.active {
  flex: 2;
}

.ml-service-bg {
  position: absolute;
  inset: 0;
}

.ml-service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ml-transition-slow);
}

.ml-service-item:hover .ml-service-bg img,
.ml-service-item.active .ml-service-bg img {
  transform: scale(1.1);
}

.ml-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.8), rgba(21, 21, 21, 0.4));
  transition: background var(--ml-transition-normal);
}

.ml-service-item:hover .ml-service-overlay,
.ml-service-item.active .ml-service-overlay {
  background: linear-gradient(to top, rgba(21, 21, 21, 0.9), rgba(21, 21, 21, 0.3));
}

.ml-service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--ml-white);
}

.ml-service-icon {
  width: 48px;
  height: 48px;
  background: var(--ml-yellow);
  border-radius: var(--ml-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ml-black);
}

.ml-service-title {
  font-size: 20px;
  color: var(--ml-white);
  margin-bottom: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: all var(--ml-transition-normal);
}

.ml-service-item:hover .ml-service-title,
.ml-service-item.active .ml-service-title {
  writing-mode: horizontal-tb;
  transform: rotate(0);
}

.ml-service-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--ml-transition-normal);
}

.ml-service-item:hover .ml-service-description,
.ml-service-item.active .ml-service-description {
  opacity: 1;
  max-height: 100px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .ml-services-accordion {
    flex-direction: column;
    height: auto;
  }
  
  .ml-service-item {
    height: 200px;
  }
  
  .ml-service-title {
    writing-mode: horizontal-tb;
    transform: rotate(0);
  }
  
  .ml-service-description {
    opacity: 1;
    max-height: none;
  }
}

/* Testimonials Widget */
.ml-testimonials {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.ml-testimonial-card {
  background: var(--ml-white);
  border-radius: var(--ml-radius-xl);
  padding: 48px;
  box-shadow: var(--ml-shadow-lg);
  position: relative;
}

.ml-testimonial-quote-icon {
  position: absolute;
  top: -24px;
  left: 48px;
  width: 48px;
  height: 48px;
  background: var(--ml-yellow);
  border-radius: var(--ml-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ml-black);
}

.ml-testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.ml-testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--ml-yellow);
  color: var(--ml-yellow);
}

.ml-testimonial-text {
  font-family: var(--ml-font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ml-black);
  margin-bottom: 32px;
}

.ml-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ml-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--ml-radius-full);
  object-fit: cover;
}

.ml-testimonial-name {
  font-family: var(--ml-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ml-black);
}

.ml-testimonial-role {
  font-size: 14px;
  color: var(--ml-text-light);
}

.ml-testimonials-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.ml-testimonials-dots {
  display: flex;
  gap: 8px;
}

.ml-testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--ml-radius-full);
  background: rgba(21, 21, 21, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--ml-transition-fast);
}

.ml-testimonials-dot.active {
  width: 32px;
  background: var(--ml-coral);
}

.ml-testimonials-arrows {
  display: flex;
  gap: 12px;
}

.ml-testimonials-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--ml-radius-full);
  background: var(--ml-white);
  border: none;
  box-shadow: var(--ml-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ml-transition-fast);
}

.ml-testimonials-arrow:hover {
  background: var(--ml-yellow);
}

/* Amenities Widget */
.ml-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ml-amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--ml-gray);
  border-radius: var(--ml-radius-lg);
  transition: all var(--ml-transition-fast);
}

.ml-amenity-item:hover {
  background: rgba(249, 228, 146, 0.2);
}

.ml-amenity-icon {
  width: 40px;
  height: 40px;
  background: var(--ml-white);
  border-radius: var(--ml-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ml-shadow-sm);
}

.ml-amenity-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ml-black);
}

@media (max-width: 1024px) {
  .ml-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ml-amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form Widget */
.ml-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ml-contact-info-image {
  border-radius: var(--ml-radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
}

.ml-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ml-contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ml-contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ml-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ml-contact-info-icon.yellow {
  background: var(--ml-yellow);
  color: var(--ml-black);
}

.ml-contact-info-icon.coral {
  background: rgba(249, 167, 142, 0.2);
  color: var(--ml-coral);
}

.ml-contact-info-label {
  font-size: 12px;
  color: var(--ml-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ml-contact-info-value {
  font-weight: 500;
  color: var(--ml-black);
}

.ml-contact-form-wrapper {
  background: var(--ml-white);
  border-radius: var(--ml-radius-xl);
  padding: 40px;
  box-shadow: var(--ml-shadow-lg);
}

.ml-contact-form .ml-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ml-contact-form .ml-form-group {
  margin-bottom: 16px;
}

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

.ml-contact-form-submit {
  width: 100%;
  margin-top: 8px;
}

.ml-form-success {
  text-align: center;
  padding: 48px 24px;
}

.ml-form-success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: var(--ml-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #16a34a;
}

@media (max-width: 1024px) {
  .ml-contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ml-contact-form .ml-form-row {
    grid-template-columns: 1fr;
  }
  
  .ml-contact-form-wrapper {
    padding: 24px;
  }
}

/* About Section Widget */
.ml-about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ml-about-image {
  position: relative;
}

.ml-about-image-main {
  border-radius: var(--ml-radius-xl);
  overflow: hidden;
  box-shadow: var(--ml-shadow-lg);
}

.ml-about-stats-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--ml-white);
  border-radius: var(--ml-radius-xl);
  padding: 24px;
  box-shadow: var(--ml-shadow-lg);
}

.ml-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ml-about-stat-icon {
  width: 24px;
  height: 24px;
  color: var(--ml-coral);
  margin-bottom: 8px;
}

.ml-about-stat-value {
  font-family: var(--ml-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ml-black);
}

.ml-about-stat-label {
  font-size: 12px;
  color: var(--ml-text-light);
}

.ml-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.ml-about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.ml-about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--ml-coral);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ml-about-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .ml-about-stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -32px;
    margin-left: 24px;
    margin-right: 24px;
  }
}

/* ============================================
   8. RESPONSIVE UTILITIES
   ============================================ */
.ml-hide-mobile { display: inherit; }
.ml-hide-desktop { display: none; }

@media (max-width: 768px) {
  .ml-hide-mobile { display: none !important; }
  .ml-hide-desktop { display: inherit !important; }
}

/* Animation Classes */
.ml-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ml-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WordPress Alignments */
.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 16px;
}

.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
