/* ====================================
   GLOBAL & RESET
   ==================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ====================================
   ANIMATIONS
   ==================================== */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
  }
}

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

/* ====================================
   NAVBAR
   ==================================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out;
}

.logo-img {
  height: 50px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffc107;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffc107;
}

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

.nav-link-cta {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 30s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 100%);
}

@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
  padding: 40px;
  animation: slideInLeft 1s ease-out;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .word {
  display: block;
  animation: slideInLeft 0.8s ease-out;
}

.hero-title .word:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-subtitle {
  font-size: 24px;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffc107;
}

.stat-label {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 100;
}

.scroll-indicator span {
  display: block;
  font-size: 11px;
  color: #ffc107;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.scroll-indicator i {
  color: #ffc107;
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
  display: block;
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.btn-secondary:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 16px;
}

.btn-service {
  background: #ffc107;
  color: #000;
  padding: 10px 20px;
  font-size: 12px;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 10;
  pointer-events: all;
  cursor: pointer;
}

.btn-service:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* ====================================
   SECTION HEADERS
   ==================================== */

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 20px;
}

.header-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* ====================================
   SERVICES SECTION
   ==================================== */

.services {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Mobile Carousel */
@media (max-width: 768px) {
  .service-grid {
    display: flex;
    grid-template-columns: auto;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    margin-top: 50px;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-grid:active {
    cursor: grabbing;
  }
}

.service-card {
  perspective: 1000px;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .service-card {
    min-width: 90vw;
    max-width: 90vw;
    flex-shrink: 0;
  }
}

.service-card-inner {
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
  pointer-events: auto;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent, rgba(255, 193, 7, 0.2), transparent);
  transform: rotate(45deg);
  animation: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-inner::before {
  animation: shimmer 3s infinite;
  opacity: 1;
}

.service-card:hover .service-card-inner {
  transform: translateY(-15px) rotateX(5deg);
  border-color: #ffc107;
  box-shadow: 0 30px 60px rgba(255, 193, 7, 0.2);
}

.service-icon {
  font-size: 50px;
  color: #ffc107;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.service-icon i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
  animation: rotateIcon 0.6s ease;
}

.service-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card-inner h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-card-inner p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-features span {
  color: #ccc;
  font-size: 13px;
}

.service-features i {
  color: #ffc107;
  margin-right: 8px;
}

.service-price {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-price strong {
  color: #ffc107;
  font-size: 24px;
}

/* ====================================
   ABOUT SECTION
   ==================================== */

.about {
  padding: 120px 0;
  background: #111;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  animation: slideInLeft 0.8s ease-out;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.about-content > p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.feature-icon {
  font-size: 40px;
  color: #ffc107;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: #ffc107;
  color: #000;
  transform: scale(1.1);
}

.feature-text h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.feature-text p {
  color: #aaa;
  font-size: 14px;
}

.about-image {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 40px;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: flex-end;
  height: 200px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .about-overlay {
  opacity: 1;
}

.about-overlay p {
  color: #ffc107;
  font-weight: 600;
  font-size: 18px;
}

/* ====================================
   STATS SECTION
   ==================================== */

.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.stat-card {
  text-align: center;
  padding: 40px;
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  animation: scaleIn 0.8s ease-out;
}

.stat-card:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
}

.stat-card h3 {
  font-size: 48px;
  color: #ffc107;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-card p {
  color: #aaa;
  font-size: 14px;
}

/* ====================================
   BOOKING SECTION
   ==================================== */

.booking {
  padding: 120px 0;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.booking-wrapper {
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  animation: fadeInUp 0.8s ease-out;
  backdrop-filter: blur(10px);
}

.booking-wrapper .calendly-inline-widget {
  border-radius: 15px;
  overflow: hidden;
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.info-card:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
  transform: translateY(-10px);
}

.info-card i {
  font-size: 40px;
  color: #ffc107;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.info-card:hover i {
  transform: scale(1.2);
}

.info-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.info-card p {
  color: #aaa;
  font-size: 14px;
}

/* ====================================
   FOOTER
   ==================================== */

footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

.footer-section h4 {
  font-size: 18px;
  color: #ffc107;
  margin-bottom: 15px;
}

.footer-section p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section ul li:hover {
  color: #ffc107;
}

.footer-section ul li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffc107;
}

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

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

.social-links a:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  color: #666;
  font-size: 13px;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

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

  .navbar {
    padding: 12px 20px;
  }

  .navbar-container {
    justify-content: space-between;
  }

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

  .nav-links {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    gap: 20px;
  }

  .nav-links.active {
    left: 0;
  }

  .logo-img {
    height: 40px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    height: auto;
    min-height: 80vh;
    margin-top: 50px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    justify-content: center;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .section-header h2 {
    font-size: 36px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-content h2 {
    font-size: 36px;
  }

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

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

  .booking-wrapper {
    padding: 20px;
  }

  .booking-wrapper .calendly-inline-widget {
    min-height: 400px !important;
  }

  .scroll-indicator {
    bottom: 40px;
  }

  .scroll-indicator span {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .scroll-indicator i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

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

  .stat-card h3 {
    font-size: 36px;
  }

  .info-card {
    padding: 20px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 12px;
  }
}

/* ====================================
   DARK MODE & SMOOTH SCROLLING
   ==================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #ffc107;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffb300;
}

/* Selection highlight */
::selection {
  background: #ffc107;
  color: #000;
}