@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Ultra-Premium Professional Fintech Palette - BYSA Inspired */
  --primary: #1a3a2a;
  /* BYSA Dark Green */
  --primary-light: #2d5a3d;
  /* BYSA Mid Green */
  --secondary: #c4961a;
  /* BYSA Gold */
  --secondary-hover: #e0b84a;
  /* BYSA Light Gold */
  --accent: #e0b84a;
  --accent-light: rgba(224, 184, 74, 0.1);
  --success: #3d7a53;

  --bg-color: #f9f5ec;
  /* BYSA Cream */
  --bg-card: #FFFFFF;
  --bg-secondary: #f0e9d6;
  /* BYSA Dark Cream */

  --text-main: #1a2a1a;
  --text-muted: #3a4a3a;
  --text-light: #f9f5ec;
  --border-color: #d8e0cc;

  /* Next-Gen Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-hover: 0 24px 70px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 24px rgba(196, 150, 26, 0.3);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 100px 20px;
  --border-radius-lg: 20px;
  --border-radius-md: 12px;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 24px;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-main);
  text-decoration: none;
  gap: 10px;
}

.btn:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.025);
  transition: var(--transition);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text-main);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.header-action {
  display: flex;
  align-items: center;
}

.header-action .btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.header-action .btn:hover {
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  padding: 160px 5vw 80px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Advanced Grid Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(4px);
}

.hero .badge ion-icon {
  color: var(--secondary);
  font-size: 18px;
}

.hero h1 {
  color: var(--text-main);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.7);
  padding: 24px 32px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Global Page Animations have been moved to dynamic JS reveal classes */

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dynamic Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(-40px);
}

.reveal.fade-left.active {
  transform: translateX(0);
}

.reveal.fade-right {
  transform: translateX(40px);
}

.reveal.fade-right.active {
  transform: translateX(0);
}

.reveal.scale-up {
  transform: scale(0.9);
}

.reveal.scale-up.active {
  transform: scale(1);
}

.reveal.zoom-in {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}

.reveal.zoom-in.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hero-content>* {
  opacity: 0;
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .badge {
  animation-delay: 0.1s;
}

.hero-content h1 {
  animation-delay: 0.3s;
}

.hero-content .desc {
  animation-delay: 0.5s;
}

.hero-content .cta-group {
  animation-delay: 0.7s;
}

.hero-content .trust-indicators {
  animation-delay: 0.9s;
}

.hero-image-wrapper {
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.hero .highlight {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, #1E40AF, #3B82F6);
}

.hero .desc {
  color: var(--text-muted);
  font-size: 20px;
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.6;
}

.hero .cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

/* --- Hero Slideshow Container --- */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
  z-index: 1;
}

.hero-image-wrapper:hover .slideshow-container {
  transform: rotateY(0) rotateX(0);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.slide-fade {
  animation-name: slideFade;
  animation-duration: 1.5s;
}

@keyframes slideFade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* Premium Image Composition */
.hero-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.img-backdrop {
  position: absolute;
  top: 5%;
  bottom: -5%;
  left: 5%;
  right: -5%;
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(29, 78, 216, 0.4) 100%);
  border-radius: var(--border-radius-lg);
  z-index: 0;
  transform: rotate(3deg);
  opacity: 0.5;
  filter: blur(20px);
}



.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-card .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #60A5FA;
}

.floating-card.card-1 .icon-box {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
}

.floating-card h4 {
  margin-bottom: 4px;
  font-size: 24px;
  color: var(--text-main);
}

.floating-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.card-1 {
  top: 40px;
  left: -60px;
}

.card-2 {
  bottom: 40px;
  right: -40px;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateZ(20px);
  }

  50% {
    transform: translateY(-15px) translateZ(20px);
  }

  100% {
    transform: translateY(0px) translateZ(20px);
  }
}

/* Glass Stats Section */
.stats-section {
  padding: 40px 20px;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-color);
}

.stat-item h3 {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--secondary), #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections General */
section {
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-head .badge {
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

/* Premium Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.2);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 17px;
  color: var(--secondary);
}

.service-card:hover .link-arrow {
  gap: 16px;
}

/* Call to Action Box */
.cta-banner {
  margin-top: 40px;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(circle at center right, rgba(37, 99, 235, 0.1), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-banner h2 {
  color: var(--text-main);
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-muted);
  margin: 0;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  padding: 18px 40px;
  font-size: 18px;
}

/* Updated Footer Architecture */
footer {
  background: var(--bg-card);
  padding-top: 80px;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-newsletter {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.newsletter-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.newsletter-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 17px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 17px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-info .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
  gap: 12px;
}

.footer-info .footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 20px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links-grid h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  color: var(--text-muted);
  font-size: 17px;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: var(--secondary);
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-muted);
}

.contact-list li .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-list li a {
  color: var(--text-muted);
}

.contact-list li a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Page Specific Overrides */

/* Services Carousel Slideshow */
.services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.services-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.services-track::-webkit-scrollbar {
  height: 8px;
}

.services-track::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: 4px;
}

.services-track::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

.slide-card {
  flex: 0 0 calc(33.333% - 22px);
  scroll-snap-align: start;
}

.carousel-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 5;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .slide-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .slide-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    display: none;
  }
}

/* Services inner cards */
.service-image-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.service-image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-content {
  padding: 40px;
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  background: var(--bg-card);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-main);
  font-size: 17px;
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  text-align: justify;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 50px;
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero .cta-group {
    justify-content: center;
  }

  .img-backdrop {
    display: none;
  }

  .card-1 {
    left: 10px;
  }

  .card-2 {
    right: 10px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 20px;
  }

  header {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    display: block;
  }

  .hero {
    padding: 140px 20px 60px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .cta-group {
    flex-direction: column;
  }

  .floating-card {
    padding: 12px;
  }

  .floating-card .icon-box {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .floating-card h4 {
    font-size: 16px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .stat-item::after {
    display: none !important;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}