/* ============================================
   URBANPAWS CONSTRUCTION & CLEANING
   Premium Business Website - Master Stylesheet
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Palette – Black */
  --primary:        #0a0a0a;
  --primary-light:  #1a1a1a;
  --primary-dark:   #000000;

  /* Accent – Gold */
  --accent:         #c9a84c;
  --accent-light:   #e2c36b;
  --accent-dark:    #a8872e;

  /* Gold CTA */
  --cta:            #d4a853;
  --cta-hover:      #b8912a;

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f9f7f2;
  --light-gray:     #e8e4da;
  --mid-gray:       #94908a;
  --dark-gray:      #5a5650;
  --text-dark:      #1a1815;

  /* Gradients */
  --gradient-hero:  linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(30,25,15,0.85) 100%);
  --gradient-card:  linear-gradient(145deg, #ffffff 0%, #f5f2eb 100%);
  --gradient-accent: linear-gradient(135deg, #d4a853 0%, #a8872e 100%);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.18);
  --shadow-glow:    0 0 30px rgba(201,168,76,0.25);

  /* Typography */
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:   'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py:     100px;
  --radius:         12px;
  --radius-lg:      20px;

  /* Transitions */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}

ul { list-style: none; }

::selection {
  background: var(--accent);
  color: var(--white);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 620px;
  margin: 0 auto 50px;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--gradient-accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  color: var(--white);
}

.btn-primary-custom:hover::before { opacity: 1; }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--cta);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 15px rgba(212,168,83,0.35);
}

.btn-cta-gold:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,168,83,0.5);
  color: var(--primary);
}

/* ---------- NAVBAR ---------- */
.navbar-main {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1050;
}

.navbar-main.scrolled {
  background: rgba(0,0,0,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-main .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.navbar-brand-custom .brand-text {
  line-height: 1.2;
}

.navbar-brand-custom .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.9;
}

.navbar-main .nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 18px !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s;
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--white) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.navbar-phone i {
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(15deg); }
  20%, 40% { transform: rotate(-15deg); }
  50% { transform: rotate(0deg); }
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=90');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201,168,76,0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
  animation: fadeInUp 0.8s 0.15s var(--ease) both;
}

.hero-title span {
  color: var(--accent-light);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.3s var(--ease) both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s 0.45s var(--ease) both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s 0.6s var(--ease) both;
}

.hero-stat-item h3 {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--primary);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.85);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

.trust-text {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

/* ---------- SERVICES OVERVIEW ---------- */
.services-overview {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  height: 100%;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.15);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img .service-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 18px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

.service-card-body {
  padding: 30px;
}

.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.service-card:hover .service-card-body h3 {
  color: var(--accent-dark);
}

.service-card-body p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}

.service-card:hover .service-card-link {
  gap: 14px;
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  transition: all 0.4s var(--ease);
  height: 100%;
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-6px);
}

.why-card-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.4s;
}

.why-card:hover .why-card-icon {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.4s var(--ease);
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--cta);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--accent-light);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -150px;
  left: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -50px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.cta-banner .btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.page-hero-content {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.88rem;
}

.breadcrumb-custom a {
  color: var(--accent-light);
}

.breadcrumb-custom span {
  color: rgba(255,255,255,0.5);
}

.breadcrumb-custom .current {
  color: rgba(255,255,255,0.8);
}

/* ---------- SERVICES DETAIL ---------- */
.services-detail {
  padding: var(--section-py) 0;
}

.service-detail-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail-block:last-child {
  border-bottom: none;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.service-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.service-detail-content p {
  color: var(--dark-gray);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.feature-list {
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature-list li i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ---------- PORTFOLIO / GALLERY ---------- */
.portfolio-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 26px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,29,53,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.portfolio-overlay span {
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- ABOUT PAGE ---------- */
.about-section {
  padding: var(--section-py) 0;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience-badge h3 {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.about-experience-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-value-item i {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.about-value-item h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-value-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: var(--section-py) 0;
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-detail-text a:hover {
  color: var(--accent-light);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.form-floating-custom {
  margin-bottom: 20px;
}

.form-floating-custom label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
  display: block;
}

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.form-floating-custom textarea {
  resize: vertical;
  min-height: 130px;
}

.form-alert {
  padding: 16px 22px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-alert-success {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--accent-dark);
}

.form-alert-error {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  color: #dc2626;
}

/* ---------- FOOTER ---------- */
.footer-main {
  background: var(--primary-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .brand-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-brand h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.footer-text {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-hours .day {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent-light);
  margin-top: 4px;
  width: 18px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--accent-light);
}

/* ---------- WHATSAPP WIDGET ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all 0.4s var(--ease);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
  color: var(--white);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0.1); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--ease);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
  color: var(--white);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  :root { --section-py: 70px; }

  .navbar-collapse {
    background: rgba(0,0,0,0.98);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .navbar-cta {
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper {
    margin-bottom: 40px;
  }

  .service-detail-img {
    height: 300px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  :root { --section-py: 60px; }

  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-item h3 {
    font-size: 1.6rem;
  }

  .trust-item {
    padding: 8px 10px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 24px;
  }

  .page-hero {
    padding: 130px 0 70px;
  }

  .portfolio-item img {
    height: 220px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 24px;
    right: 20px;
  }

  .back-to-top {
    bottom: 86px;
    right: 22px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

/* ---------- LIGHTBOX ---------- */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 30px;
  cursor: pointer;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-modal img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}
