/* style.css - Premium Edition (Fully Fixed & Responsive) */
:root {
  --primary-navy: #0a1a2f;
  --secondary-navy: #122b44;
  --accent-gold: #b59b6b;
  --accent-light: #d4c4a8;
  --off-white: #f8fafc;
  --light-gray: #f0f4fa;
  --mid-gray: #e2e8f0;
  --dark-gray: #334155;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --shadow-sm: 0 10px 30px -15px rgba(0,0,0,0.1);
  --shadow-md: 0 20px 40px -20px rgba(0,0,0,0.2);
  --shadow-lg: 0 30px 60px -30px rgba(0,0,0,0.3);
  --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Cursor - Only for desktop */
@media (min-width: 992px) {
  body {
    cursor: none;
  }
  
  .custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
  }
  
  .custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.preloader-logo-img {
  height: 45px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.preloader-line {
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  animation: lineGrow 2s ease-in-out forwards;
}

@keyframes lineGrow {
  0% { width: 0; }
  100% { width: min(300px, 80vw); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Prata', serif;
  font-weight: 400;
  line-height: 1.2;
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 80px);
}

.section-header.left {
  text-align: left;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.section-header.left .section-subtitle::before {
  left: 0;
  transform: none;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.title-accent {
  color: var(--accent-gold);
  font-style: italic;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(15px, 3vw, 20px) 0;
  z-index: 1000;
  transition: all 0.4s;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.logo-wrapper {
  position: relative;
}

.logo {
  text-decoration: none;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.logo-image {
  display: flex;
  align-items: center;
  padding: 0;
  height: 100%;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: all 0.3s ease;
  display: block;
}

.navbar.scrolled .logo-img {
  height: 28px;
}

.logo-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.4s;
}

.logo-wrapper:hover .logo-underline {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-right: clamp(20px, 3vw, 40px);
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  display: inline-block;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
  overflow: hidden;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  color: var(--accent-gold);
  white-space: nowrap;
  overflow: hidden;
  transition: width 0.4s ease;
  z-index: 2;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: transparent;
}

.nav-link.active {
  color: transparent;
}

.nav-link.active::before {
  width: 100%;
  color: var(--accent-gold);
}

.nav-indicator {
  position: absolute;
  bottom: -20px;
  left: 0;
  height: 3px;
  background: var(--accent-gold);
  transition: all 0.4s;
  opacity: 0;
}

.nav-link.active ~ .nav-indicator {
  opacity: 1;
}

.btn-outline {
  padding: 12px clamp(20px, 3vw, 30px);
  border: 2px solid var(--primary-navy);
  border-radius: 50px;
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 600;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  display: inline-block;
  white-space: nowrap;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-navy);
  transition: left 0.4s;
  z-index: -1;
}

.btn-outline:hover {
  color: white;
}

.btn-outline:hover::before {
  left: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 3px;
  background: var(--primary-navy);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) {
  transform: translateY(-8px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(8px);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.reveal-text {
  display: block;
  transform: translateY(100%);
  animation: revealText 1s forwards;
}

.reveal-text-delay {
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

@keyframes revealText {
  to { transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: clamp(20px, 3vw, 30px);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px clamp(25px, 4vw, 45px);
  background: var(--accent-gold);
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.4s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.btn-text {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.4s;
  white-space: nowrap;
}

.btn-text:hover {
  gap: 15px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, white, transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-text .lead {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--primary-navy);
  margin-bottom: 20px;
  font-weight: 500;
}

.philosophy-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.philosophy-stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Prata', serif;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.philosophy-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-item {
  aspect-ratio: 1;
  border-radius: 20px;
  transition: all 0.4s;
}

.grid-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.philosophy-quote {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}

.philosophy-quote i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.philosophy-quote blockquote {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Services Section */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  perspective: 1500px;
  height: 350px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  box-shadow: var(--shadow-md);
}

.card-front {
  background: white;
}

.card-back {
  background: var(--primary-navy);
  color: white;
  transform: rotateY(180deg);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.card-front h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-navy);
}

.card-front p {
  color: var(--text-secondary);
}

.card-back p {
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  text-decoration: none;
}

/* Sectors Section */
.sectors-marquee {
  overflow: hidden;
  padding: 40px 0;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 15px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--primary-navy);
  border: 1px solid var(--mid-gray);
  transition: all 0.3s;
}

.marquee-content span:hover {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
  transform: translateY(-3px);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.sectors-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

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

.showcase-item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

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

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  color: white;
  transform: translateY(0);
  transition: transform 0.6s;
}

.showcase-item:hover .item-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.98), rgba(0,0,0,0.3));
}

.item-overlay h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 10px;
}

.item-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

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

.about-text .lead {
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.feature i {
  color: var(--accent-gold);
}

.about-visual {
  position: relative;
  height: 500px;
}

@media (max-width: 768px) {
  .about-visual {
    height: 400px;
  }
}

.visual-stack {
  position: relative;
  height: 100%;
  width: 100%;
}

.stack-item {
  position: absolute;
  width: 80%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
  border-radius: 30px;
  transition: all 0.4s;
}

.stack-item:nth-child(1) {
  top: 0;
  right: 0;
  transform: rotate(5deg);
  z-index: 1;
}

.stack-item:nth-child(2) {
  top: 50px;
  left: 0;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, var(--accent-gold), #d4b88c);
  z-index: 2;
}

.stack-item:nth-child(3) {
  bottom: 50px;
  right: 20px;
  transform: rotate(8deg);
  background: var(--light-gray);
  z-index: 3;
}

.team-collage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 4;
}

@media (max-width: 768px) {
  .team-collage {
    width: 220px;
    height: 300px;
  }
}

.team-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
}

.team-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Careers Section */
.careers {
  background: var(--light-gray);
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
}

@media (max-width: 992px) {
  .careers-grid {
    grid-template-columns: 1fr;
  }
}

.careers-text {
  margin: 30px 0;
}

.careers-text p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.careers-contact {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.contact-chip i {
  color: var(--accent-gold);
}

.contact-chip a {
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-chip a:hover {
  color: var(--accent-gold);
}

.careers-faq h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-navy);
  transition: all 0.3s;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--accent-gold);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  background: white;
  overflow: hidden;
  transition: all 0.4s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel {
  padding: clamp(30px, 5vw, 60px);
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
  color: white;
}

.contact-info-panel .section-subtitle {
  color: var(--accent-light);
}

.contact-info-panel .section-title {
  color: white;
}

.contact-description {
  margin: 30px 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-details {
  margin: 40px 0;
}

.detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.detail-text h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.detail-text p,
.detail-text a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.contact-form-panel {
  padding: clamp(30px, 5vw, 60px);
  background: white;
}

.premium-form {
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid var(--mid-gray);
  background: transparent;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group textarea {
  resize: none;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-secondary);
  transition: all 0.3s;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -15px;
  font-size: 0.8rem;
  color: var(--accent-gold);
}

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

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.4s;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
  width: 100%;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background: #10b98120;
  border-radius: 10px;
  color: #10b981;
}

.form-success.show {
  display: flex;
}

/* Testimonials Section */
.testimonial-section {
  background: var(--light-gray);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

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

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card i {
  color: var(--accent-gold);
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-gray);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
  color: white;
  padding: clamp(60px, 8vw, 100px) 0;
  margin: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.newsletter-content {
  max-width: 500px;
}

.newsletter-content .section-subtitle {
  color: var(--accent-light);
}

.newsletter-content .section-title {
  color: white;
}

.newsletter-description {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-top: 20px;
}

.newsletter-form {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .newsletter-input-group {
    flex-direction: column;
  }
}

.newsletter-input-group input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-input-group input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255,255,255,0.15);
}

.newsletter-input-group button {
  padding: 15px 35px;
  white-space: nowrap;
  background: var(--accent-gold);
  color: var(--primary-navy);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-input-group button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: #d4b88c;
}

.newsletter-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  color: #10b981;
  margin-bottom: 15px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.newsletter-success.show {
  display: flex;
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 15px;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--accent-gold), var(--primary-navy));
  z-index: 1001;
  transition: width 0.1s;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.3s;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: white;
  padding: 60px 0 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: clamp(40px, 6vw, 60px);
  margin-bottom: 60px;
}

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

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

.footer-logo-img {
  height: 35px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

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

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .hero {
    padding-top: 50px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-indicator {
    display: none;
  }
  
  .nav-cta {
    gap: 10px;
  }
  
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .logo-img {
    height: 28px;
    max-width: 150px;
  }
  
  .navbar.scrolled .logo-img {
    height: 24px;
  }
  
  .preloader-logo-img {
    height: 35px;
    max-width: 200px;
  }
  
  .footer-logo-img {
    height: 30px;
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 80px;
  }

  .btn-outline {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .philosophy-stats {
    flex-direction: column;
  }
  
  .about-features {
    flex-direction: column;
  }
  
  .careers-contact {
    flex-direction: column;
  }
  
  .contact-chip {
    width: 100%;
    justify-content: center;
  }
  
  .logo-img {
    height: 24px;
    max-width: 130px;
  }
  
  .navbar.scrolled .logo-img {
    height: 22px;
  }
}

/* WhatsApp Capsule */
.whatsapp-capsule {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  animation: slideInRight 0.5s ease-out, float 3s ease-in-out infinite;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.whatsapp-link {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 60px;
  padding: 12px 20px 12px 15px;
  text-decoration: none;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
  position: relative;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-link:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.whatsapp-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.whatsapp-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.whatsapp-time {
  font-size: 0.75rem;
  opacity: 0.9;
}

.whatsapp-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: #ff4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid white;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive WhatsApp */
@media (max-width: 768px) {
  .whatsapp-capsule {
    bottom: 80px;
    right: 15px;
  }
  
  .whatsapp-link {
    padding: 8px;
    border-radius: 50%;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-icon {
    margin-right: 0;
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }
  
  .whatsapp-notification {
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }
}

@media (max-width: 576px) {
  .whatsapp-capsule {
    bottom: 70px;
    right: 10px;
  }
}

/* Logo hover effect */
.logo-image:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Fix for Twitter/X icon */
.fa-twitter:before {
  content: "\f099";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
