/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Variables - Greenberg Group Design System */
:root {
  --near-black: #161316;
  --dark-brown: #453027;
  --white: #FFFFFF;
  --light-gray: #BABABA;
  --champagne-gold: #D6B585;
  --near-black-transparent: rgba(22, 19, 22, 0.85);
  --dark-brown-transparent: rgba(69, 48, 39, 0.7);
  --champagne-gold-light: rgba(214, 181, 133, 0.15);
  --champagne-gold-medium: rgba(214, 181, 133, 0.3);
  --champagne-gold-subtle: rgba(214, 181, 133, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--near-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Skip to Content Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--near-black);
  color: var(--champagne-gold);
  padding: 8px;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* Background Video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 1;
  pointer-events: none;
  will-change: auto;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-brown-transparent) 0%, var(--near-black-transparent) 100%);
  z-index: -1;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-title-small {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--white);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--light-gray);
}

.body-large {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--light-gray);
}

.body-regular {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--light-gray);
}

.body-small {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--light-gray);
}

.caption {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--champagne-gold);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  background: var(--near-black);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--champagne-gold);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 70px;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--champagne-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--champagne-gold);
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--champagne-gold);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 0 4rem;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 30px rgba(214, 181, 133, 0.2));
}

.hero-subtitle,
.hero-content h1 {
  font-size: 1.75rem;
  color: var(--light-gray);
  margin-bottom: 3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--near-black) 0%, var(--dark-brown) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid var(--near-black);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(214, 181, 133, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a0d0b 0%, #161316 100%);
  border-color: var(--champagne-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(214, 181, 133, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 3rem;
  background: transparent;
  border: 2px solid var(--champagne-gold);
  border-radius: 50px;
  color: var(--champagne-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--champagne-gold);
  color: var(--near-black);
  border-color: var(--champagne-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 181, 133, 0.3);
}

.btn-link {
  color: var(--champagne-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link:hover {
  transform: translateX(-5px);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--light-gray);
  font-size: 0.875rem;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--champagne-gold));
  margin: 1rem auto 0;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

/* Glass Card */
.glass-card {
  background: rgba(22, 19, 22, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--champagne-gold-medium);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  color: var(--light-gray);
}

.glass-card:hover {
  background: rgba(22, 19, 22, 0.8);
  border-color: var(--champagne-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(214, 181, 133, 0.15);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-header .body-large {
  max-width: 700px;
  margin: 0 auto;
}

.section:first-of-type {
  padding-top: 6rem;
}

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

/* About Section */
.about-content {
  max-width: 1100px;
  margin: 0 auto;
}

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

.about-text p {
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.8;
}

.about-highlight {
  margin-top: 3rem;
  padding: 3.5rem 3rem;
  text-align: right;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--champagne-gold-light) 0%, var(--champagne-gold-subtle) 100%);
  border: 1px solid var(--champagne-gold-medium);
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne-gold), var(--near-black), var(--champagne-gold));
  opacity: 0.7;
}

.about-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(214, 181, 133, 0.2);
}

.about-highlight .card-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 600;
}

.about-highlight p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

.about-highlight p:last-of-type {
  margin-bottom: 0;
}

.about-highlight h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* CTA Section Styling */
.cta-section {
  margin: 0;
  animation: fadeInUp 0.8s ease-out;
}

.cta-section .glass-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background: var(--champagne-gold-light);
  border: 2px solid var(--champagne-gold-medium);
}

.cta-section .glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--near-black), var(--champagne-gold), var(--near-black));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-section .glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(214, 181, 133, 0.25);
}

.cta-section .glass-card:hover::before {
  opacity: 1;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .process-step::before {
    display: none;
  }
}

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .process-step::before {
    display: none;
  }
}

.service-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 300px;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  color: var(--champagne-gold);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne-gold-subtle);
  border-radius: 50%;
  padding: 15px;
}

.service-card:hover .service-icon {
  color: var(--white);
  transform: scale(1.1);
  background: var(--champagne-gold-light);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card .card-title {
  margin-bottom: 1rem;
}

.service-card .body-regular {
  flex-grow: 1;
}

/* Urban Renewal Section */
.urban-renewal-content {
  max-width: 1200px;
  margin: 0 auto;
}

.renewal-intro {
  text-align: right;
  padding: 3.5rem 3rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.renewal-intro .body-large {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--light-gray);
}

.renewal-intro .body-regular {
  color: var(--light-gray);
}

.renewal-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.renewal-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--champagne-gold-medium);
  color: var(--light-gray);
  font-size: 0.9375rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓ ';
  color: var(--champagne-gold);
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Process Section */
.process-section {
  margin-top: 2rem;
  padding: 2.5rem 2.5rem;
  background: linear-gradient(135deg, var(--champagne-gold-light) 0%, var(--champagne-gold-subtle) 100%);
  border-radius: 20px;
  border: 1px solid var(--champagne-gold-medium);
}

.process-intro {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(22, 19, 22, 0.5);
  border: 2px solid var(--champagne-gold-medium);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(to left, var(--champagne-gold), transparent);
  transform: translateY(-50%);
  opacity: 0.5;
}

.process-step:nth-child(5n+1)::before,
.process-step:first-child::before {
  display: none;
}

.process-step:hover {
  background: rgba(22, 19, 22, 0.8);
  border-color: var(--champagne-gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(214, 181, 133, 0.25);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--champagne-gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step .card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step .body-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  padding: 3rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(22, 19, 22, 0.6);
  border: 2px solid var(--champagne-gold-medium);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--light-gray);
}

.contact-action-btn:hover {
  background: rgba(22, 19, 22, 0.9);
  border-color: var(--champagne-gold);
  transform: translateX(-5px);
  box-shadow: 0 10px 30px rgba(214, 181, 133, 0.15);
}

.action-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.phone-btn .action-icon {
  background: linear-gradient(135deg, var(--near-black) 0%, var(--dark-brown) 100%);
  color: var(--white);
}

.whatsapp-btn .action-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
}

.email-btn .action-icon {
  background: linear-gradient(135deg, var(--champagne-gold) 0%, #a08f6f 100%);
  color: var(--near-black);
}

.action-icon svg {
  width: 30px;
  height: 30px;
}

.action-content {
  flex: 1;
  text-align: right;
}

.action-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.action-number {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--champagne-gold);
  margin-bottom: 0.25rem;
  direction: ltr;
  text-align: right;
}

.action-subtitle {
  font-size: 0.875rem;
  color: var(--light-gray);
  font-weight: 400;
}

.contact-action-btn:hover .action-icon {
  transform: scale(1.15) rotate(5deg);
}

.phone-btn:hover {
  border-color: var(--champagne-gold);
}

.phone-btn:hover .action-icon {
  box-shadow: 0 0 25px rgba(214, 181, 133, 0.5);
}

.whatsapp-btn:hover {
  border-color: #25D366;
}

.whatsapp-btn:hover .action-icon {
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.email-btn:hover {
  border-color: var(--champagne-gold);
}

.email-btn:hover .action-icon {
  box-shadow: 0 0 25px rgba(214, 181, 133, 0.5);
}

.contact-action-btn:active {
  transform: scale(0.98);
}

/* Contact Form Styles */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--light-gray);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: right;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(22, 19, 22, 0.8);
  border: 1px solid var(--champagne-gold-medium);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: right;
  transition: all 0.3s ease;
  min-height: 50px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(186, 186, 186, 0.6);
  opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--champagne-gold);
  box-shadow: 0 0 0 3px var(--champagne-gold-subtle);
  background: rgba(22, 19, 22, 0.95);
}

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

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: rgba(214, 181, 133, 0.15);
  border: 1px solid var(--champagne-gold-medium);
  color: var(--champagne-gold);
}

.form-status.error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #ff6b6b;
}

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

.info-card {
  padding: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.contact-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.contact-text {
  flex: 1;
}

.cta-card {
  padding: 2.5rem;
  background: var(--champagne-gold-light);
  border: 1px solid var(--champagne-gold-medium);
}

.cta-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-feature {
  color: var(--light-gray);
  font-size: 0.9375rem;
}

.cta-feature::before {
  content: '✓ ';
  color: var(--champagne-gold);
}

/* Footer */
.footer {
  background: var(--near-black);
  border-top: 1px solid var(--champagne-gold);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 400px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  height: 130px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--champagne-gold);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--champagne-gold);
}

.footer-bottom .caption {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-action-btn {
    flex-direction: row;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .action-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .action-icon svg {
    width: 25px;
    height: 25px;
  }

  .action-title {
    font-size: 1.125rem;
  }

  .action-number {
    font-size: 1.25rem;
  }

  .action-subtitle {
    font-size: 0.8125rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  #bg-video {
    display: block;
    opacity: 0.7;
    object-fit: cover;
    transform: scale(1.1);
  }

  .video-overlay {
    background: linear-gradient(135deg, rgba(22, 19, 22, 0.80) 0%, rgba(22, 19, 22, 0.75) 100%);
  }

  .hero-logo {
    max-width: 400px;
  }

  .hero-subtitle,
  .hero-content h1 {
    font-size: 1.375rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-title-small {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-cta a {
    width: 100%;
    text-align: center;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    min-width: auto;
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .cta-section {
    margin: 0;
  }

  .cta-section .glass-card {
    padding: 2.5rem 1.5rem !important;
    max-width: 100% !important;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  .about-highlight {
    margin-top: 1.5rem;
    padding: 2rem 1.5rem !important;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  #about.section {
    padding-top: 5rem !important;
  }

  .about-highlight:hover,
  .cta-section .glass-card:hover {
    transform: translateY(-2px);
  }

  .process-section {
    padding: 2rem 1.5rem;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
    background: rgba(22, 19, 22, 0.5);
    border: 1px solid var(--champagne-gold-medium);
  }

  .process-step::before {
    display: none;
  }

  .step-number {
    font-size: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--near-black);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    border-top: 1px solid var(--champagne-gold);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .renewal-types {
    grid-template-columns: 1fr;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    padding: 12px;
  }

  .service-card {
    min-height: auto;
    padding: 2rem;
  }

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

  .about-highlight {
    padding: 2.5rem 2rem !important;
  }

  #about.section {
    padding-top: 6rem !important;
  }

  .highlight-text {
    font-size: 1.125rem;
  }

  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .renewal-intro {
    padding: 2.5rem 2rem;
  }

  .renewal-intro .body-large {
    font-size: 1.125rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 280px;
  }

  .hero-subtitle,
  .hero-content h1 {
    font-size: 1.125rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .about-highlight {
    padding: 1.5rem 1.25rem !important;
    margin-top: 1rem;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  #about.section {
    padding-top: 4rem !important;
  }

  .about-highlight .card-title {
    font-size: 1.25rem !important;
    color: var(--white);
  }

  .about-highlight div[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }

  .about-highlight h4 {
    font-size: 1rem !important;
    color: var(--white);
  }

  .renewal-intro {
    padding: 2rem 1.5rem;
  }

  .renewal-intro .body-large {
    font-size: 1.0625rem;
  }

  .highlight-text {
    font-size: 1rem;
  }

  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
  }

  .container[style*="margin-top"] {
    margin-top: 1.5rem !important;
  }

  .contact-action-btn {
    padding: 1.25rem;
    gap: 1rem;
  }

  .action-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .action-icon svg {
    width: 22px;
    height: 22px;
  }

  .action-title {
    font-size: 1rem;
  }

  .action-number {
    font-size: 1.0625rem;
  }

  .contact-actions {
    gap: 1rem;
  }

  .contact-action-btn {
    padding: 1.25rem;
    gap: 1rem;
  }

  .action-title {
    font-size: 1rem;
  }

  .action-number {
    font-size: 1.0625rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form-wrapper h3 {
    font-size: 1.375rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    padding: 10px;
  }

  .process-section {
    padding: 1.5rem 1rem;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step {
    padding: 1.25rem 0.875rem;
    background: rgba(22, 19, 22, 0.5);
    border: 1px solid var(--champagne-gold-medium);
  }

  .process-step::before {
    display: none;
  }

  .step-number {
    font-size: 1.75rem;
  }

  .process-step .card-title {
    font-size: 1rem;
  }

  .process-intro {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .cta-section .glass-card {
    padding: 2rem 1.25rem !important;
    max-width: 100% !important;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  .about-highlight {
    margin-top: 1.25rem;
    padding: 2.5rem 2rem !important;
    background: var(--champagne-gold-light);
    border: 1px solid var(--champagne-gold-medium);
  }

  #about.section {
    padding-top: 7rem !important;
  }

  .section-title-small {
    font-size: 1.25rem;
  }

  .body-large {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale3d(0.95, 0.95, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

.hero-logo {
  animation: fadeIn 1.2s ease-out;
  animation-fill-mode: both;
}

/* Smooth transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Performance optimizations */
img {
  content-visibility: auto;
  image-rendering: auto;
}

.glass-card {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

/* Optimize animations */
.hero-content,
.glass-card,
.process-step {
  will-change: auto;
}

/* GPU acceleration for smooth scrolling */
.navbar,
.glass-card,
.process-step {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Floating Contact Buttons Container */
.floating-contacts {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Phone Float Button */
.phone-float {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--near-black) 0%, var(--dark-brown) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(214, 181, 133, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  animation: phonePulse 2s ease-in-out infinite;
  border: 3px solid var(--champagne-gold-medium);
  position: relative;
}

.phone-float:hover {
  transform: scale(1.15) translateY(-5px) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(214, 181, 133, 0.7);
}

.phone-float svg {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.phone-float:hover svg {
  transform: scale(1.1) rotate(5deg);
}

/* WhatsApp Float Button */
.whatsapp-float {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  animation: whatsappPulse 2s ease-in-out infinite 1s;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px) rotate(5deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-float:active,
.phone-float:active {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1) rotate(-5deg);
}

.float-text {
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

@keyframes phonePulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(214, 181, 133, 0.5), 0 0 0 0 rgba(214, 181, 133, 0.7);
  }
  50% {
    box-shadow: 0 8px 35px rgba(214, 181, 133, 0.7), 0 0 0 10px rgba(214, 181, 133, 0);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes whatsappRipple {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* Float Button Tooltips */
.float-tooltip {
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--near-black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent var(--near-black);
}

.whatsapp-float:hover .float-tooltip,
.phone-float:hover .float-tooltip {
  opacity: 1;
  right: 90px;
}

/* Mobile Contact Buttons adjustments */
@media (max-width: 768px) {
  .floating-contacts {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .whatsapp-float,
  .phone-float {
    width: 60px;
    height: 60px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .phone-float svg {
    width: 28px;
    height: 28px;
  }

  .float-text {
    font-size: 0.5rem;
  }

  .float-tooltip {
    display: none;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--champagne-gold);
  outline-offset: 2px;
}

/* Allow user to customize focus style */
*:focus-visible {
  outline: 2px solid var(--champagne-gold);
  outline-offset: 2px;
}

/* ========================================
   Utility Classes & Component Overrides
   ======================================== */

/* About section padding */
#about {
    padding-top: 8rem;
}

/* About Highlight background override */
.about-highlight {
    background: linear-gradient(135deg, rgba(214, 181, 133, 0.08) 0%, rgba(22, 19, 22, 0.04) 100%);
}

/* Component-specific classes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(22, 19, 22, 0.5);
    border-radius: 12px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--champagne-gold-subtle);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  color: var(--champagne-gold);
}
.feature-icon svg {
  width: 30px;
  height: 30px;
}
.feature-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* CTA cards */
.cta-card-primary {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(214, 181, 133, 0.15) 0%, rgba(22, 19, 22, 0.08) 100%) !important;
}
.cta-card-secondary {
    max-width: 850px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(22, 19, 22, 0.08) 0%, rgba(214, 181, 133, 0.12) 100%) !important;
    border: 2px solid var(--champagne-gold) !important;
}

/* Button group layout */
.button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact heading */
.contact-heading {
    font-size: 1.75rem;
}

/* Typography utilities */
.text-center { text-align: center; }
.text-gold { color: var(--champagne-gold); }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.leading-1-8 { line-height: 1.8; }
.leading-1-7 { line-height: 1.7; }

.border-t { border-top: 1px solid var(--champagne-gold-medium); }

/* Spacing utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mb-0-75 { margin-bottom: 0.75rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-25 { margin-bottom: 1.25rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-2-5 { margin-bottom: 2.5rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
.p-4 { padding: 4rem; }
.px-2 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-1-5 { padding-top: 1.5rem; }
.pb-1-5 { padding-bottom: 1.5rem; }

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: 1rem; }
.gap-1-5 { gap: 1.5rem; }
.gap-2 { gap: 2rem; }

/* Button utilities */
.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}
.btn-md {
    padding: 1.25rem 2.5rem !important;
}

/* Icon size */
.icon {
    font-size: 1.25rem;
}

/* Radius */
.radius-12 {
    border-radius: 12px;
}

/* Background */
.bg-dark-50 {
    background: rgba(22, 19, 22, 0.5);
}
