*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f47c20;
  --navy: #1b2a5a;
  --navy-light: #253470;
  --navy-dark: #0f1a3a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text-muted: #6b7a99;
  --shadow: 0 8px 32px rgba(27, 42, 90, 0.1);
  --shadow-hover: 0 16px 48px rgba(27, 42, 90, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27, 42, 90, 0.08);
  padding: 16px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text span:first-child {
  color: var(--orange);
}

.logo-text span:last-child {
  color: var(--navy);
}

.nav-spacer {
  flex: 1;
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 124, 32, 0.4);
}

/* ── HERO BANNER ── */
.hero-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
  padding: 80px 5vw;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.4) 0%, transparent 70%);
  top: -100px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.25) 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: 50%;
  right: -50px;
  animation: float 12s ease-in-out infinite;
}

/* ── PARTICLES ── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.particle-1 {
  width: 8px;
  height: 8px;
  background: rgba(244, 124, 32, 0.6);
  top: 20%;
  left: 10%;
  animation: particleFloat 6s ease-in-out infinite, particleOpacity 6s ease-in-out infinite;
}

.particle-2 {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  top: 40%;
  right: 15%;
  animation: particleFloat 7s ease-in-out infinite reverse, particleOpacity 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.particle-3 {
  width: 5px;
  height: 5px;
  background: rgba(244, 124, 32, 0.5);
  top: 60%;
  left: 20%;
  animation: particleFloat 8s ease-in-out infinite, particleOpacity 8s ease-in-out infinite;
  animation-delay: 1s;
}

.particle-4 {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.7);
  top: 30%;
  right: 8%;
  animation: particleFloat 6.5s ease-in-out infinite reverse, particleOpacity 6.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  background: rgba(244, 124, 32, 0.4);
  top: 70%;
  right: 20%;
  animation: particleFloat 7.5s ease-in-out infinite, particleOpacity 7.5s ease-in-out infinite;
  animation-delay: 2s;
}

.particle-6 {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  top: 50%;
  left: 5%;
  animation: particleFloat 8.5s ease-in-out infinite reverse, particleOpacity 8.5s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* ── FLOATING SHAPES ── */
.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 5%;
  border: 2px solid rgba(244, 124, 32, 0.8);
  border-radius: 20px;
  animation: rotateShape 15s linear infinite, floatShape 6s ease-in-out infinite;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 10%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: rotateShape 20s linear infinite reverse, floatShape 8s ease-in-out infinite reverse;
  animation-delay: 1s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 12%;
  border: 2px dashed rgba(244, 124, 32, 0.6);
  border-radius: 10px;
  animation: rotateShape 18s linear infinite, floatShape 7s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  position: relative;
  display: inline-block;
  background: rgba(244, 124, 32, 0.2);
  border: 1px solid rgba(244, 124, 32, 0.4);
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
  animation: slideInDown 0.8s ease-out, badgePulse 2s ease-in-out infinite;
  animation-delay: 0s, 1.5s;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  animation: badgeGlow 2s ease-in-out infinite;
}

.badge-text {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-word {
  display: block;
  animation: slideInUp 0.8s ease-out backwards, wordGlow 3s ease-in-out infinite;
}

.word-1 { 
  animation-delay: 0.1s, 0.1s;
}
.word-2 { 
  animation-delay: 0.2s, 0.8s;
}
.word-3 { 
  animation-delay: 0.3s, 1.6s;
}
.word-4 { 
  animation-delay: 0.4s, 2.4s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.7;
  animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-underline {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin: 20px auto 0;
  animation: expandWidth 1s ease-out 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.7s backwards;
  margin-top: 20px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Sora", sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(244, 124, 32, 0.45);
  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.3), transparent);
  animation: buttonShine 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(244, 124, 32, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

/* ── WAVES ── */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

.wave-1 {
  animation: wave 8s linear infinite;
}

.wave-2 {
  bottom: 8px;
  animation: waveReverse 10s linear infinite;
}

.wave-3 {
  bottom: 16px;
  animation: wave 12s linear infinite;
}

/* ── FLOATING TEXT ── */
.floating-text {
  position: absolute;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgba(244, 124, 32, 0.15);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 2px;
}

.float-text-1 {
  top: 15%;
  left: 5%;
  animation: floatText 8s ease-in-out infinite;
}

.float-text-2 {
  top: 60%;
  right: 8%;
  font-size: 1.8rem;
  animation: floatText 10s ease-in-out infinite reverse;
  animation-delay: 1s;
}

.float-text-3 {
  bottom: 20%;
  left: 15%;
  font-size: 1.6rem;
  animation: floatText 9s ease-in-out infinite;
  animation-delay: 2s;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: var(--white);
  padding: 100px 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  background: rgba(244, 124, 32, 0.1);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange) 0%, #f99340 100%);
  transform: scale(1.1);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-badge {
  display: inline-block;
  background: rgba(244, 124, 32, 0.12);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 124, 32, 0.12) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-container .section-header {
  margin-bottom: 50px;
}

.contact-container .section-label {
  background: rgba(244, 124, 32, 0.18);
}

.contact-container .section-header h2 {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.form-group label .req {
  color: var(--orange);
  margin-left: 3px;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
  backdrop-filter: blur(4px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(244, 124, 32, 0.2);
}

.form-group textarea {
  resize: vertical;
  font-family: "Sora", sans-serif;
}

.form-submit {
  margin-top: 32px;
  text-align: center;
}

.btn-submit {
  background: var(--orange);
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 56px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(244, 124, 32, 0.45);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(244, 124, 32, 0.6);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 5vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

footer span {
  color: var(--orange);
}

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(15px);
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
  }
  75% {
    transform: translateY(-20px) translateX(20px);
  }
}

@keyframes particleOpacity {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes floatText {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-30px) rotate(3deg);
    opacity: 0.25;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes waveReverse {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: inset 0 0 20px rgba(244, 124, 32, 0), 0 0 20px rgba(244, 124, 32, 0.3);
  }
  50% {
    box-shadow: inset 0 0 20px rgba(244, 124, 32, 0.2), 0 0 30px rgba(244, 124, 32, 0.6);
  }
}

@keyframes wordGlow {
  0%, 100% {
    text-shadow: 0 0 10px transparent, 0 0 20px transparent;
  }
  50% {
    text-shadow: 0 0 10px rgba(244, 124, 32, 0.5), 0 0 20px rgba(244, 124, 32, 0.3);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes buttonShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ── SUCCESS TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #22c55e;
  color: white;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 12px 5vw;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .hero-banner {
    min-height: 70vh;
    padding: 60px 5vw;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .services-section,
  .contact-section {
    padding: 70px 5vw;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }
}