/* ========================================
   CUREVOYAGE GLOBAL - LUXURY WELLNESS BRAND
   Premium Design System
   ======================================== */

/* === GOOGLE FONTS === */
@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');

/* === CSS VARIABLES === */
:root {
  /* Brand Colors */
  --primary-beige: #F2E5DA;
  --secondary-beige: #D1C2B0;
  --tertiary-beige: #E7D7C0;
  --accent-blue: #A9B3C6;
  --dark-navy: #20314C;
  --gold-accent: #C3A268;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(32, 49, 76, 0.08);
  --shadow-medium: 0 8px 30px rgba(32, 49, 76, 0.12);
  --shadow-hover: 0 12px 40px rgba(32, 49, 76, 0.18);

  /* Borders */
  --border-gold: 1px solid var(--gold-accent);
  --border-radius: 12px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-navy);
  background-color: #FFFFFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

.text-gold {
  color: var(--gold-accent);
}

.text-center {
  text-align: center;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-accent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-accent), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.navbar-menu a {
  font-weight: 500;
  color: var(--dark-navy);
  position: relative;
  padding: 5px 0;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    align-items: flex-start;
  }

  .navbar-menu.active {
    right: 0;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold-accent);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #B39258;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-accent);
  color: var(--gold-accent);
}

.btn-outline:hover {
  background: var(--gold-accent);
  color: white;
}

.btn-light {
  background: white;
  color: var(--dark-navy);
  box-shadow: var(--shadow-soft);
}

.btn-light:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* === CARDS === */
.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(195, 162, 104, 0.1);
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: var(--gold-accent);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-navy);
}

.card-text {
  color: #666;
  margin-bottom: 20px;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-beige), var(--tertiary-beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-accent);
  font-size: 2rem;
}

/* === HERO SECTIONS === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-beige) 0%, var(--tertiary-beige) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.has-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(242, 229, 218, 0.85);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23C3A268" opacity="0.1"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--gold-accent);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--dark-navy);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === PAGE HERO (Smaller secondary pages) === */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-beige) 0%, var(--tertiary-beige) 100%);
  padding-top: 100px;
  padding-bottom: 60px;
}

/* === FOOTER === */
.footer {
  background: var(--dark-navy);
  color: white;
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-column h4 {
  color: var(--gold-accent);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a:hover {
  color: var(--gold-accent);
}

.footer-divider {
  height: 1px;
  background: var(--gold-accent);
  margin: 30px 0;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(195, 162, 104, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--gold-accent);
  transform: scale(1.1);
}

/* === FLOATING ACTION BUTTONS === */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  cursor: pointer;
  font-size: 1.5rem;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--accent-blue);
}

.float-btn.sms {
  background: var(--gold-accent);
}

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  animation: fadeInUp 0.8s ease forwards;
}

/* === BRAND PROMISE === */
.brand-promise {
  background: var(--primary-beige);
  padding: 60px 0;
  text-align: center;
}

.promise-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--dark-navy);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 25px;
}

.promise-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gold-accent);
  border-radius: 2px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--gold-accent);
  filter: sepia(20%) brightness(1.1);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 5px;
}

.testimonial-location {
  color: var(--gold-accent);
  font-size: 0.95rem;
}

/* === LOGO CAROUSEL === */
.logo-carousel {
  background: var(--tertiary-beige);
  padding: 40px 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
}

.partner-logo {
  height: 50px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* === FORMS === */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-navy);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(195, 162, 104, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* === MODAL CUSTOMIZATION === */
.modal-content {
  border-radius: var(--border-radius);
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-beige), var(--tertiary-beige));
  border-bottom: var(--border-gold);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
  color: var(--dark-navy);
  font-family: var(--font-serif);
}

.modal-body {
  padding: 30px;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(32, 49, 76, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--gold-accent);
  color: white;
}

/* === FILTER BUTTONS === */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--gold-accent);
  background: white;
  color: var(--gold-accent);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-accent);
  color: white;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-accent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 40px);
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--gold-accent);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-soft);
}

/* === RESPONSIVE === */

/* === LARGE TABLETS & SMALL DESKTOPS (max-width: 992px) === */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .section {
    padding: 60px 0;
  }

  .hero-content {
    max-width: 700px;
  }
}

/* === TABLETS & MOBILE (max-width: 768px) === */
@media (max-width: 768px) {

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Typography */
  h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  }

  /* Hero Sections */
  .hero {
    min-height: 70vh;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .page-hero {
    min-height: 40vh;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Button Groups in Hero */
  .hero-content>div[style*="display: flex"] {
    gap: 15px !important;
  }

  /* Buttons */
  .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    min-height: 44px;
    /* Ensure proper touch target */
  }

  .btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-height: 40px;
  }

  /* Filter Buttons */
  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    min-height: 44px;
    /* Touch target optimization */
  }

  /* Grids */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  /* Cards */
  .card {
    padding: 25px;
  }

  .card-img {
    height: 200px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  /* Timeline */
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 60px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-marker {
    left: 30px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating Actions */
  .floating-actions {
    right: 15px;
    bottom: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Forms */
  .form-control {
    padding: 12px 16px;
    font-size: 1rem;
  }

  textarea.form-control {
    min-height: 120px;
  }

  /* Newsletter Form */
  #newsletterForm {
    flex-direction: column !important;
  }

  #newsletterForm input[type="email"] {
    width: 100% !important;
  }

  #newsletterForm .btn {
    width: 100%;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  /* Brand Promise */
  .brand-promise {
    padding: 40px 0;
  }

  .promise-text {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
  }

  /* Testimonials */
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-img {
    width: 80px;
    height: 80px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* === MOBILE DEVICES (max-width: 480px) === */
@media (max-width: 480px) {

  /* Base */
  body {
    font-size: 15px;
  }

  /* Container */
  .container {
    padding: 0 12px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .page-hero {
    min-height: 35vh;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 0 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  /* Buttons */
  .btn {
    padding: 11px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
  }

  .btn-sm {
    padding: 9px 18px;
    font-size: 0.85rem;
  }

  /* Hero Button Groups */
  .hero-content>div[style*="display: flex"] {
    flex-direction: column !important;
    width: 100%;
    gap: 12px !important;
  }

  .hero-content>div[style*="display: flex"] a {
    width: 100%;
  }

  /* Filter Buttons */
  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 0.85rem;
    flex: 1 1 auto;
    min-width: fit-content;
  }

  /* Grids - Force Single Column on Very Small Screens */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Cards */
  .card {
    padding: 20px;
  }

  .card-img {
    height: 180px;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  /* Floating Actions */
  .floating-actions {
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  /* Footer */
  .footer {
    padding-top: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-divider {
    margin: 20px 0;
  }

  .footer-bottom {
    padding: 20px 0;
    font-size: 0.9rem;
  }

  .footer-bottom a {
    display: block;
    margin: 10px 0 !important;
  }

  /* Social Links */
  .social-links {
    justify-content: center;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  /* Brand Promise */
  .brand-promise {
    padding: 30px 0;
  }

  .promise-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    padding-bottom: 20px;
  }

  .promise-text::after {
    width: 80px;
    height: 3px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-location {
    font-size: 0.85rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Lightbox Navigation */
  .lightbox-nav {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  .lightbox-nav.prev {
    left: 10px !important;
  }

  .lightbox-nav.next {
    right: 10px !important;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  /* Forms */
  .form-control {
    padding: 11px 14px;
    font-size: 0.95rem;
  }

  .form-label {
    font-size: 0.95rem;
  }

  textarea.form-control {
    min-height: 100px;
  }

  /* Modals */
  .modal-dialog {
    margin: 10px;
  }

  .modal-body {
    padding: 20px 15px;
  }

  .modal-header,
  .modal-footer {
    padding: 15px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  /* Section Titles */
  .section-title {
    margin-bottom: 35px;
  }

  .section-title::after {
    width: 60px;
    height: 2px;
    margin-top: 15px;
  }

  /* Logo Carousel */
  .logo-carousel {
    padding: 30px 0;
  }

  .logo-track {
    gap: 40px;
  }

  .partner-logo {
    height: 40px;
  }

  /* Navbar Brand */
  .navbar-brand {
    font-size: 1.5rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* === UTILITY CLASSES === */
.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}