
@tailwind base;
@tailwind components;
@tailwind utilities;

/* CSS Variables */
:root {
  --primary-gold: #FFD700;
  --primary-gold-dark: #DAA520;
  --primary-gold-darker: #B8860B;
  --navy-dark: hsl(220, 30%, 12%);
  --navy-medium: hsl(220, 25%, 15%);
  --navy-light: hsl(220, 20%, 20%);
  --light-bg: #f0f0f0;
  --text-light: hsl(0, 0%, 95%);
  --text-gray: #6b7280;
  --text-navy: hsl(220, 30%, 12%);
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(255, 215, 0, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Gold Gradient and Text */
.gold-gradient {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
}

.gold-text {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.white-text {
  color: white;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.bounce {
  animation: bounce 2s infinite;
}

/* WhatsApp Link Styling */
.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-link:hover {
  color: #128C7E;
  transform: scale(1.05);
}

.whatsapp-icon {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('/assets/meeting-room-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-image {
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-gold);
}

.hero-cta {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  color: black;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  color: var(--primary-gold);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-navy);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

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

.stat-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
  min-height: 1.5em;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  color: var(--text-gray);
  font-weight: 500;
}

.mission-statement {
  background: var(--navy-dark);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.mission-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-text {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.team-member-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.team-member-card.main-partner {
  border: 3px solid var(--primary-gold-dark);
  position: relative;
}

.team-member-card.main-partner::before {
  content: "Proprietário";
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  color: black;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.team-member-image {
  margin-bottom: 1.5rem;
}

.team-member-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-member-role {
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-member-credentials {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.team-member-contact {
  margin-bottom: 1.5rem;
}

.team-member-summary {
  margin-bottom: 1.5rem;
}

.team-member-summary p {
  color: var(--text-gray);
  line-height: 1.6;
}

.expand-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  background: var(--navy-dark);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.expand-button:hover {
  background: var(--navy-medium);
}

.expand-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.expand-icon.expanded {
  transform: rotate(180deg);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expandable-content.expanded {
  max-height: 500px;
}

.team-member-details h4 {
  color: var(--text-navy);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.team-member-details h4:first-child {
  margin-top: 0;
}

.team-member-details ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.team-member-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.team-member-details li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--navy-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--navy-medium);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(255, 215, 0, 0.3);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: var(--primary-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.cta-text {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  color: black;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Partnerships Section */
.partnerships-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.partnership-section {
  margin-bottom: 5rem;
}

.partnership-section:last-child {
  margin-bottom: 0;
}

.partnership-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.partnership-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary-gold-dark);
}

.partnership-title {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partnership-info {
  background: var(--navy-dark);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.partnership-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-available {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-item {
  color: #d1d5db;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: var(--light-bg);
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
  border-color: var(--primary-gold-dark);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  color: black;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.popular-badge svg {
  width: 1rem;
  height: 1rem;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-subtitle {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.package-features li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: var(--primary-gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.auto-info {
  background: var(--navy-dark);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.auto-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auto-info p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.auto-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.auto-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.auto-feature svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-gold);
}

/* Differentials Section */
.differentials-section {
  padding: 5rem 0;
  background: var(--navy-dark);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.differential-card {
  background: var(--navy-medium);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.differential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(255, 215, 0, 0.3);
}

.differential-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.differential-icon svg {
  width: 2rem;
  height: 2rem;
}

.differential-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.differential-description {
  color: #d1d5db;
  line-height: 1.6;
}

.work-methodology {
  background: var(--light-bg);
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.methodology-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.methodology-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.methodology-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-navy);
}

.methodology-list {
  list-style: none;
}

.methodology-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.methodology-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-navy);
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-gold-dark);
}

.contact-card-header h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-navy);
}

.contact-role {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
}

.contact-detail svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-gold-dark);
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.business-hour {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.social-link {
  color: var(--primary-gold-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary-gold-darker);
}

.contact-form-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-navy);
}

.success-message {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: #0ea5e9;
  margin: 0 auto 1rem;
}

.success-message h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0ea5e9;
}

.success-message p {
  color: #6b7280;
}

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

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

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

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-navy);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold-dark);
}

.form-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  color: black;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.form-note {
  color: var(--text-gray);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: white;
}

.footer-main {
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

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

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

.footer-logo h3 {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
}

.footer-tagline svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-gold);
}

.footer-contact-item a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-cta {
  background: var(--navy-medium);
  padding: 2rem 0;
  text-align: center;
}

.footer-cta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.footer-cta-button {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
  color: black;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-cta-button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  background: var(--navy-light);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links button,
.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-bottom-links button:hover,
.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-background {
    background-attachment: scroll;
  }
}

/* Ensure proper color scheme on mobile */
@media (max-width: 768px) {
  .gold-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 50%, var(--primary-gold-darker) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .whatsapp-link {
    color: #25D366;
  }
  
  .whatsapp-link:hover {
    color: #128C7E;
  }
}
