@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* CSS Variables for Sidar Home */
:root {
  --primary-dark: #0c2041;
  --primary-gold: #e5b622;
  --primary-black: #141414;

  /* Additional derived colors */
  --primary-dark-light: #1a3357;
  --primary-gold-light: #f0c842;
  --primary-black-light: #2a2a2a;

  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-dark: #333333;

  /* Background colors */
  --bg-primary: var(--primary-dark);
  --bg-secondary: var(--primary-black);
  --bg-accent: var(--primary-gold);

  /* Border colors */
  --border-primary: var(--primary-gold);
  --border-secondary: rgba(229, 182, 34, 0.3);

  /* Parallax variables */
  --bg-text-y: 10%;
}
/* Lenis Smooth Scroll */
html {
  scroll-behavior: auto !important;
}
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
    ellipse at center,
    #0c2041 0%,
    #141414 50%,
    #0a0a0a 100%
  );
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
  overflow: hidden;
}

/* Particle Background */
.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #e5b622, transparent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite ease-in-out;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1.5);
  }
}

.loading-content {
  text-align: center;
  color: #ffffff;
  z-index: 10;
  position: relative;
}

.loading-logo {
  margin-bottom: 40px;
}

.logo-container {
  position: relative;
  display: inline-block;
}

.loading-logo img {
  width: 150px;
  height: auto;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(229, 182, 34, 0.3));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229, 182, 34, 0.3), transparent 70%);
  border-radius: 50%;
  animation: logoGlow 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

@keyframes logoGlow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.loading-text {
  margin-bottom: 40px;
}

.loading-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(229, 182, 34, 0.5);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.loading-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 2px;
  animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(229, 182, 34, 0.3);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 40px rgba(229, 182, 34, 0.6);
  }
}

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

.loading-bar-container {
  margin-bottom: 30px;
}

.loading-bar {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 15px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #e5b622, #f0c842, #e5b622);
  border-radius: 3px;
  width: 0%;
  position: relative;
  box-shadow: 0 0 20px rgba(229, 182, 34, 0.5);
  transition: width 0.3s ease;
}

.loading-bar-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229, 182, 34, 0.4),
    transparent
  );
  border-radius: 3px;
  animation: barGlow 2s linear infinite;
  pointer-events: none;
}

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

.loading-percentage {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5b622;
  text-shadow: 0 0 10px rgba(229, 182, 34, 0.5);
  font-family: "Courier New", monospace;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #e5b622, #f0c842);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(229, 182, 34, 0.4);
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

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

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Main Content Hidden Initially */
.main-content {
  opacity: 0;
  visibility: hidden;
}

.main-content.loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease;
}

/* Global styles */
html,
body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rubik", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}
/* Utility classes */
.bg-primary {
  background-color: var(--bg-primary);
}
.bg-secondary {
  background-color: var(--bg-secondary);
}
.bg-accent {
  background-color: var(--bg-accent);
}
.text-primary {
  color: var(--text-primary);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-accent {
  color: var(--bg-accent);
}
.border-primary {
  border-color: var(--border-primary);
}
/* Header Styles */
.header {
  direction: ltr;
  width: 30%;
  margin: auto;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 1000;
  border-radius: 10px;
  background: rgba(12, 32, 65, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 182, 34, 0.2);
  height: 60px;
}
.header-container {
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.logo {
  width: 60px;
  display: flex;
  align-items: center;
}
.logo img {
  width: 100%;
  object-fit: contain;
}
.hamburger {
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1011;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: linear-gradient(90deg, #eed489, #ac8c44);
  border-radius: 3px;
  transition: all 0.3s ease;
  position: absolute;
  left: 4px;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 13px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .loading-logo img {
    width: 80px;
  }
  .header {
    width: 85%;
    top: 20px;
  }
}
/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  padding: 20px;
}
.content-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 50px 0;
  justify-content: center;
  border: 1px solid #eed489;
  border-radius: 20px;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 32, 65, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 1;
  text-align: right;
  color: #ffffff;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-text {
  background: linear-gradient(90deg, #eed489, #ac8c44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
  flex: 0 0 auto;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #eed489, #ac8c44);
  color: #ffffff;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(174, 140, 68, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ac8c44, #eed489);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(174, 140, 68, 0.4);
  border-color: rgba(238, 212, 137, 0.3);
}

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

.hero-btn:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 20px rgba(174, 140, 68, 0.3);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e5b622, transparent);
  opacity: 0.6;
}

.hero-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  scale: 0.5;
  transition: all 0.3s ease;
}

.hero-center-logo {
  width: 200px;
  height: auto;
  max-width: 80vw;
  filter: drop-shadow(0 0 30px rgba(229, 182, 34, 0.8));
}
.hero-logo-overlay {
  top: 40%;
}
@media (max-width: 768px) {
  .hero {
    padding: 10px;
  }
  .hero-content {
    flex-direction: column;
    text-align: start;
    gap: 20px;
  }
  .hero-text {
    width: 100%;
    text-align: start;
  }
  .hero-text p {
    margin-bottom: 10px;
  }
  .hero-button {
    align-self: start;
    margin-bottom: 30px;
  }
  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .hero-center-logo {
    width: 150px;
  }
  .hero-logo-overlay {
    top: 30%;
  }
}
/* About Section */
.about {
  padding: 80px 0;
  position: relative;
  direction: ltr;
}

.about-gallery {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.about-gallery::before,
.about-gallery::after {
  content: "";
  position: absolute;
  top: -50px;
  width: 500px;
  height: calc(100% + 100px);
  z-index: 10;
  pointer-events: none;
}

.about-gallery::before {
  left: -100px;
  background: linear-gradient(
    to right,
    rgb(20, 20, 20) 0%,
    rgb(20, 20, 20) 21%,
    rgba(20, 20, 20, 0) 100%
  );
}

.about-gallery::after {
  right: -100px;
  background: linear-gradient(
    to left,
    rgb(20, 20, 20) 0%,
    rgb(20, 20, 20) 21%,
    rgba(20, 20, 20, 0) 100%
  );
}

.gallery-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.gallery-track img:nth-child(odd) {
  margin-top: -30px;
}

.gallery-track img:nth-child(even) {
  margin-top: 30px;
}

.gallery-track img {
  width: 250px;
  height: 320px;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 10px;
  border-radius: 5px;
}

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

.about.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.about-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive About */
@media (max-width: 768px) {
  .about {
    padding: 50px 0px;
  }

  .gallery-track img {
    width: 120px;
    height: 170px;
    margin: 0 5px;
  }

  .about-content {
    padding: 0 15px;
  }

  .about-content h2 {
    margin-bottom: 20px;
  }

  .about-content p {
    margin-bottom: 15px;
  }
  .about-gallery::before,
  .about-gallery::after {
    width: 300px;
  }
  .about-gallery::before {
    left: -50px;
    background: linear-gradient(
      to right,
      rgb(20, 20, 20) 0%,
      rgb(20, 20, 20) 20%,
      rgba(20, 20, 20, 0) 100%
    );
  }
  .about-gallery::after {
    right: -50px;
    background: linear-gradient(
      to left,
      rgb(20, 20, 20) 0%,
      rgb(20, 20, 20) 20%,
      rgba(20, 20, 20, 0) 100%
    );
  }
}

.header-container .desktop-nav {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(12, 32, 65, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(229, 182, 34, 0.2);
  z-index: 999;
  overflow-y: auto;
  padding: 80px 20px 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.animate__animated {
  animation-duration: 0.5s;
}

.menu-list {
  list-style: none;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .menu-list {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.menu-list li {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .menu-list li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .menu-list li:nth-child(1) {
  transition-delay: 0.4s;
}
.mobile-menu.active .menu-list li:nth-child(2) {
  transition-delay: 0.5s;
}
.mobile-menu.active .menu-list li:nth-child(3) {
  transition-delay: 0.6s;
}
.mobile-menu.active .menu-list li:nth-child(4) {
  transition-delay: 0.7s;
}

.menu-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.menu-list a:hover {
  color: var(--primary-gold);
}

.menu-secondary {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .menu-secondary {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}

.menu-secondary a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .menu-secondary a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .menu-secondary a:nth-child(1) {
  transition-delay: 0.8s;
}
.mobile-menu.active .menu-secondary a:nth-child(2) {
  transition-delay: 0.9s;
}

.menu-secondary a:hover {
  color: var(--primary-gold);
}

.menu-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-gold),
    transparent
  );
  margin: 20px 0;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(20px);
}

.mobile-menu.active .menu-divider {
  opacity: 0.3;
  transform: translateX(0);
}

.mobile-menu.active .menu-divider:nth-of-type(1) {
  transition-delay: 0.75s;
}

.mobile-menu.active .menu-divider:nth-of-type(2) {
  transition-delay: 1s;
}

.mobile-menu.active .menu-divider:nth-of-type(3) {
  transition-delay: 1.3s;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .social-icons {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.1s;
}

.social-icon {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(229, 182, 34, 0.3);
  opacity: 0;
  transform: translateX(20px) scale(0.8);
  transition: all 0.3s ease;
}

.mobile-menu.active .social-icon {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.mobile-menu.active .social-icon:nth-child(1) {
  transition-delay: 1.1s;
}
.mobile-menu.active .social-icon:nth-child(2) {
  transition-delay: 1.15s;
}
.mobile-menu.active .social-icon:nth-child(3) {
  transition-delay: 1.2s;
}
.mobile-menu.active .social-icon:nth-child(4) {
  transition-delay: 1.25s;
}

.social-icon:hover {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .copyright {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.6s;
}

.copyright p {
  margin: 0;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: 120px 20px 20px;
  }
}
/* About Section Overlay and Pinning */
.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(20, 20, 20);
  z-index: 2;
  pointer-events: none;
  transition: background-color 0.6s ease;
}

#about.is-pinned .about-overlay {
  background: rgba(20, 20, 20, 0.8);
}

#about.is-pinned {
  transform: scale(0.95);
  transition: transform 0.6s ease;
}

#about.is-pinned .about-content {
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

/* Services Section */
.services {
  padding: 80px 0px;
  position: relative;
  z-index: 10;
  background: #ffffff;
  color: #333333;
}

.services::before {
  content: "Sidar Home";
  position: absolute;
  top: var(--bg-text-y);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: #e6e6e6;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.services-container {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #333333;
  margin-bottom: 60px;
  font-weight: 700;
  text-shadow: none;
}

.services-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.services-text {
  flex: 1;
  text-align: right;
}

.services-text h3 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.services-text p {
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: #555555;
  margin-bottom: 25px;
  font-weight: 400;
}

.services-button {
  flex: 0 0 auto;
}

.services-btn {
  display: inline-block;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-primary);
  position: relative;
  overflow: hidden;
}

.services-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eed489, #ac8c44);
  transition: left 0.4s ease;
  z-index: -1;
}

.services-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(174, 140, 68, 0.4);
  border-color: rgba(238, 212, 137, 0.3);
  color: #ffffff;
}

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

.services-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5b622, transparent);
  margin: 60px 0;
  opacity: 0.6;
}

/* Caption Groups */
.slide-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.slide-caption-group {
  text-align: right;
  direction: rtl;
}

.slide-caption-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666666;
  margin-top: 5px;
}

/* Slider Styles */
.services-slider {
  direction: ltr;
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  padding: 40px 0;
}

.slide-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  margin-bottom: 30px;
}

.slide-image-wrapper {
  text-align: center;
}

.slide-image-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 2.5/3;
  margin-top: 15px;
}

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

.slide-image-item:hover img {
  transform: scale(1.05);
}

.slide-image-caption {
  color: #333333;
  padding: 0;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  background: none;
  box-shadow: none;
  transition: none;
  text-align: right;
  direction: rtl;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 20;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eed489, #ac8c44);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(174, 140, 68, 0.3);
}

.slider-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(174, 140, 68, 0.4);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, #eed489, #ac8c44);
  transform: scale(1.2);
}

/* Portfolio Section within Services */
.portfolio-container {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0px 200px;
  align-items: start;
}
.portfolio-grid2 {
  display: grid;
  grid-template-columns: 1.3fr 1.5fr;
  grid-template-rows: auto auto;
  gap: 80px 200px;
  align-items: start;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.large-left-card {
  grid-column: 1;
  grid-row: 1;
}

.small-right-card {
  grid-column: 2;
  grid-row: 1;
  align-self: flex-end;
  margin-top: 300px;
}

.bottom-row-card {
  grid-column: span 1;
  grid-row: 2;
}

.bottom-row-card:first-of-type {
  grid-column: 1;
}

.bottom-row-card:last-of-type {
  grid-column: 2;
  margin-top: 150px;
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 8px solid #ffffff;
}

.large-left-card .portfolio-image-wrapper {
  height: 400px;
}

.small-right-card .portfolio-image-wrapper {
  height: 300px;
}

.bottom-row-card .portfolio-image-wrapper {
  height: 320px;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 32, 65, 0.1),
    rgba(229, 182, 34, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  padding: 25px;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.portfolio-text {
  flex: 1;
}

.portfolio-content h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #0c2041;
  margin-bottom: 12px;
  font-weight: 600;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0;
}

.portfolio-date {
  display: inline-block;
  background: #e0e0e0;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, #eed489, #ac8c44);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.portfolio-date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e0e0;
  border-radius: 20px;
  z-index: -1;
}

.portfolio-date:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Camera-style frame effect */
.portfolio-image-wrapper::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #ffffff;
  z-index: 3;
  box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-image-wrapper::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #ffffff transparent transparent;
  z-index: 3;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Portfolio */
@media (max-width: 768px) {
  .portfolio-container {
    margin: 40px auto;
    padding: 0 15px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  .portfolio-grid2 {
    display: block;
    margin-top: 20px;
  }
  .bottom-row-card:last-of-type {
    margin-top: 20px;
  }
  .large-left-card,
  .small-right-card,
  .bottom-row-card {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
    margin-top: 0;
  }

  .large-left-card .portfolio-image-wrapper,
  .small-right-card .portfolio-image-wrapper,
  .bottom-row-card .portfolio-image-wrapper {
    height: 200px;
  }

  .portfolio-content {
    padding: 20px;
  }

  .portfolio-content h3 {
    font-size: 1.1rem;
  }

  .portfolio-content p {
    font-size: 0.85rem;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services {
    padding: 50px 0px;
  }

  .services-content {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 50px;
  }

  .services-text {
    text-align: center;
  }
  .services-text p {
    padding: 0 25px;
  }
  .services-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .services-divider {
    margin: 10px 0;
  }
  .slide {
    min-width: 100%;
    padding: 20px 15px;
  }
  .slide-images {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  /* Hide 2nd and 3rd images on mobile - show only first image */
  .slide-image-wrapper:nth-child(2),
  .slide-image-wrapper:nth-child(3) {
    display: none;
  }

  /* Adjust captions for mobile - show only first caption */
  .slide-captions {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .slide-caption-group:nth-child(2),
  .slide-caption-group:nth-child(3) {
    display: none;
  }

  .slider-controls {
    bottom: 10px;
    right: 10px;
    gap: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .slider-dots {
    bottom: 20px;
    display: none; /* Hide dots on mobile */
  }
}

/* Interactive Section */
.interactive-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.interactive-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.interactive-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  align-items: center;
  direction: rtl;
}

.sentences-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sentence-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 20px 30px;
  background: transparent;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.sentence-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(229, 182, 34, 0.1),
    rgba(229, 182, 34, 0.05)
  );
  transition: left 0.4s ease;
  z-index: 0;
}

.sentence-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(229, 182, 34, 0.2) 10%,
    rgba(229, 182, 34, 0.8) 50%,
    rgba(229, 182, 34, 0.2) 90%,
    transparent 100%
  );
  z-index: 2;
}

.sentence-item:last-child::after {
  display: none;
}

.sentence-item:hover {
  transform: translateX(-10px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.sentence-item:hover::before {
  left: 0;
}

.sentence-item.active {
  background: transparent;
  border: none;
}

.sentence-text {
  font-size: 2.3rem;
  font-weight: 900;
  color: #666666;
  text-align: right;
  flex: 1;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.sentence-item:hover .sentence-text {
  color: #ffffff;
}

.sentence-item.active .sentence-text {
  color: #ffffff;
}

.arrow-icon {
  padding: 15px 20px;
  color: #ffffff;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  background: rgba(128, 128, 128, 0.3);
  border-radius: 50%;
  font-size: 30px;
}

.sentence-item:hover .arrow-icon,
.sentence-item.active .arrow-icon {
  opacity: 1;
  transform: translateX(0);
  background: rgba(128, 128, 128, 0.5);
}

.image-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.image-wrapper img,
.image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 32, 65, 0.1),
    rgba(229, 182, 34, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image-wrapper:hover::before {
  opacity: 1;
}

.image-wrapper:hover img,
.image-wrapper:hover video {
  transform: none;
}

.image-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  max-width: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .interactive-section {
    padding: 50px 0;
  }
  .interactive-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sentences-list {
    gap: 20px;
  }
  .sentence-item {
    padding: 15px 20px;
  }

  .sentence-text {
    font-size: 1rem;
  }

  .image-wrapper {
    aspect-ratio: 16/9;
  }
  .image-text {
    font-size: 1.1rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 1350px;
  margin: 0 auto;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding-left: 0;
}

.faq-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-align: right;
}

.faq-title .gradient-text {
  background: linear-gradient(90deg, #eed489, #ac8c44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.faq-subtitle {
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: #555555;
  font-weight: 400;
  text-align: right;
  max-width: 70%;
}

.faq-content {
  max-width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  gap: 15px;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
  order: 2;
}

.faq-icon {
  color: #e5b622;
  font-size: 18px;
  transition: all 0.3s ease;
  order: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #1a1a1a;
}

.faq-answer {
  overflow: hidden;
  transition: all 0.4s ease;
  background: #ffffff;
  max-height: 0;
}

.faq-answer p {
  padding: 0 30px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #666666;
  text-align: right;
}

.faq-item.active .faq-answer {
  padding: 20px 0 30px 0;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-header {
    padding-right: 0;
    padding-left: 0;
    order: -1;
  }
  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0c2041 0%, #141414 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #eed489, transparent);
  opacity: 0.6;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand {
  text-align: right;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(238, 212, 137, 0.3));
}

.footer-brand h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-brand p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  margin: 0 auto;
}

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

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #eed489;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-column ul li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #eed489, #ac8c44);
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: #eed489;
  transform: translateX(-5px);
}

.footer-column ul li a:hover::before {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-item i {
  color: #eed489;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-link:hover {
  color: #128c7e;
  transform: translateX(3px);
}

.phone-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: #eed489;
  transform: translateX(3px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(238, 212, 137, 0.3),
    transparent
  );
  margin: 40px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-social .social-icon {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(238, 212, 137, 0.2);
  background: rgba(238, 212, 137, 0.05);
}

.footer-social .social-icon:hover {
  color: #eed489;
  border-color: #eed489;
  transform: translateY(-3px);
  background: rgba(238, 212, 137, 0.1);
  box-shadow: 0 8px 25px rgba(238, 212, 137, 0.2);
}

/* Footer Background Pattern */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(238, 212, 137, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(238, 212, 137, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

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

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

  .footer-top {
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .contact-info {
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-float:hover::before {
  width: 100%;
  height: 100%;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float i {
  animation: pulse 2s infinite;
  z-index: 1;
  position: relative;
}

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

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

/* Responsive for floating button */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 15px !important;
    left: 15px !important;
    right: auto !important;
  }

  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }

  .floating-contact {
    bottom: 75px !important;
    left: 15px !important;
    right: auto !important;
  }

  .contact-float {
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 10px !important;
    left: 10px !important;
    right: auto !important;
  }

  .whatsapp-float {
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
  }

  .floating-contact {
    bottom: 65px !important;
    left: 10px !important;
    right: auto !important;
  }

  .contact-float {
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
  }
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.contact-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e5b622, #ac8c44);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(229, 182, 34, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.contact-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(229, 182, 34, 0.6);
  background: linear-gradient(135deg, #ac8c44, #e5b622);
}

.contact-float:hover::before {
  width: 100%;
  height: 100%;
}

.contact-float:active {
  transform: scale(0.95);
}

.contact-float i {
  animation: pulse 2s infinite;
  animation-delay: 1s;
  z-index: 1;
  position: relative;
}
