/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors - Black Tie & Brass */
  --primary-color: #d4af37;
  --primary-dark: #b8860b;
  --primary-light: #f1d37e;

  /* Secondary Colors - Black Tie & Brass */
  --secondary-color: #1a1a1a;
  --secondary-light: #2a2a2a;

  /* Accent Colors - Black Tie & Brass */
  --accent-color: #c5a02c;
  --success-color: #27ae60;
  --warning-color: #f39c12;

  /* Text Colors - Black Tie & Brass */
  --text-color: #1a1a1a;
  --text-light: #666666;
  --text-lighter: #999999;

  /* Backgrounds - Black Tie & Brass */
  --light-bg: #ffffff;
  --white: #ffffff;
  --dark-bg: #1a1a1a;

  /* Gradients - Black Tie & Brass */
  --gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  --gradient-hero: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --gradient-text: linear-gradient(
    135deg,
    #d4af37 0%,
    #f1d37e 50%,
    #b8860b 100%
  );

  /* Shadows - Black Tie & Brass */
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 10px 40px rgba(212, 175, 55, 0.3);
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
}

body {
  font-family: "Assistant", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Secular One", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  text-decoration: none;
  display: block;
}

.logo-image {
  width: auto;
  height: 80px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.nav-link:hover {
  color: var(--primary-color);
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,144C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.2;
  animation: wave 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease, slideInScale 1.2s ease;
  max-width: 90%;
  margin-top: 5.5rem;
}

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

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.95;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.2s both;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Secular One", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.4s both;
  /* Brighter gradient for hero title */
  background: linear-gradient(
    135deg,
    #f4dd70 0%,
    #d4af37 30%,
    #f1d37e 60%,
    #d4af37 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.2);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
  animation: fadeInUp 1s ease 0.6s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 50px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  animation: fadeInUp 1s ease 0.8s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1s both;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #c9a853 0%, #b8941f 100%);
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #d4af37 0%, #9d7a1a 100%);
}

.btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f1d37e 0%, #d4af37 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(1.02);
}

.scroll-indicator {
  position: absolute;
  bottom: calc(30px - 0.5cm);
  left: 20px;
  transform: none;
  z-index: 3;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 16px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

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

/* About Section */
.about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.about-intro {
  font-family: "Secular One", sans-serif;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about-features-title {
  font-family: "Secular One", sans-serif;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--light-bg);
  border-radius: 15px;
}

.cta-text {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.phone-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cta-subtext {
  font-size: 1.1rem;
  color: #666;
}

.cta-subtext a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.cta-subtext a:hover {
  text-decoration: underline;
}

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

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: var(--transition);
  background: var(--white);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-glow);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-icon i {
  font-size: 3rem;
}

.feature-item h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

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

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-hover);
}

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

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02) perspective(1000px) rotateX(2deg);
  box-shadow: var(--shadow-strong);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  z-index: 1;
}

.service-icon i {
  font-size: 4rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotateY(360deg);
  color: var(--primary-dark);
  filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
}

.service-card h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-card ul {
  list-style: none;
  text-align: right;
}

.service-card ul li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-right: 20px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Gallery Section */
.gallery {
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
  position: relative;
  z-index: 0;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-image {
  transform: scale(1.15);
}

.gallery-item:hover {
  box-shadow: var(--shadow-strong);
}

.video-section {
  margin-top: 60px;
}

.video-section h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

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

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/9;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color) 0%, #c0392b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
}

.video-placeholder i {
  font-size: 4rem;
  opacity: 0.9;
}

.video-item:hover .video-placeholder {
  transform: scale(1.05);
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Testimonials Section */
.testimonials {
  background: var(--light-bg);
}

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

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 5rem;
  font-family: "Secular One", sans-serif;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-top-color: var(--primary-dark);
}

.stars {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--secondary-color);
  font-weight: 600;
  text-align: left;
}

/* Schedule Section */
.schedule {
  background: var(--white);
}

.schedule-info {
  text-align: center;
  padding: 50px 40px;
  background: var(--light-bg);
  border-radius: 20px;
  margin-top: 50px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.schedule-info:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.schedule-info p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  padding: 10px 15px;
  border-radius: 8px;
}

.social-link i {
  font-size: 1.5rem;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.1);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
}

/* Contact Section */
.contact {
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

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

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  color: var(--primary-color);
  width: 60px;
  text-align: center;
}

.contact-icon i {
  font-size: 2.5rem;
}

.contact-item h3 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-item p {
  color: #666;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Assistant", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  background: #fffef9;
}

.form-group input:valid:not(:placeholder-shown):not(:focus),
.form-group textarea:valid:not(:placeholder-shown):not(:focus) {
  border-color: var(--success-color);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--accent-color);
}

.form-group .error-message {
  display: none;
  color: var(--accent-color);
  font-size: 0.875rem;
  margin-top: 5px;
}

.form-group input:invalid:not(:placeholder-shown):not(:focus) ~ .error-message,
.form-group
  textarea:invalid:not(:placeholder-shown):not(:focus)
  ~ .error-message {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-light) 100%
  );
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 70px;
}

.page-title {
  font-family: "Secular One", sans-serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Content Intro */
.content-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.content-intro h2 {
  font-family: "Secular One", sans-serif;
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.content-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* Service Detail Cards */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-detail-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-detail-icon {
  font-size: 4rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.service-detail-card h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.service-detail-card > p {
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.service-detail-card ul {
  list-style: none;
}

.service-detail-card ul li {
  padding: 10px 0;
  color: #555;
  position: relative;
  padding-right: 30px;
}

.service-detail-card ul li i {
  position: absolute;
  right: 0;
  color: var(--primary-color);
}

/* Use Cases */
.use-cases {
  margin: 60px 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.use-case-card {
  background: var(--light-bg);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.use-case-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.use-case-card h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.use-case-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Equipment */
.equipment-category {
  margin-bottom: 60px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
}

.category-header i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.category-header h2 {
  font-family: "Secular One", sans-serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin: 0;
}

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

.equipment-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.equipment-card.featured {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  border: 2px solid var(--primary-color);
}

.equipment-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.equipment-card h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.equipment-card > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.equipment-features {
  list-style: none;
  text-align: right;
  margin-top: 20px;
}

.equipment-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-right: 25px;
}

.equipment-features li i {
  position: absolute;
  right: 0;
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Benefits */
.service-benefits {
  margin: 60px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-item h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.benefit-item p {
  color: #666;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: var(--light-bg);
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-section h2 {
  font-family: "Secular One", sans-serif;
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.cta-section > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-buttons .btn i {
  font-size: 1.2rem;
}

/* Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.article-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.article-image {
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image i {
  font-size: 5rem;
  color: var(--white);
  opacity: 0.8;
}

.article-content {
  padding: 30px;
}

.article-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.article-date i {
  font-size: 0.9rem;
}

.article-content h2 {
  color: var(--secondary-color);
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-content > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.article-link:hover {
  color: var(--secondary-color);
  gap: 12px;
}

/* Newsletter */
.newsletter-signup {
  background: var(--light-bg);
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
}

.newsletter-signup h2 {
  font-family: "Secular One", sans-serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.newsletter-signup > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: "Assistant", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form .btn {
  padding: 15px 40px;
}

/* Responsive Design */
@media (max-width: 968px) {
  /* Hide video on mobile/tablet for better performance */
  .hero {
    background: var(--gradient-hero);
  }

  /* Hide theme switcher - Brand colors are locked to Black Tie & Brass */
  #theme-selector {
    display: none !important;
  }

  .logo-image {
    width: auto;
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    gap: 15px;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .about-content,
  .services-grid,
  .testimonials-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-detailed,
  .equipment-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-title {
    font-size: 2rem;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

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

  .section {
    padding: 50px 0;
  }

  .use-cases-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .fab {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    font-size: 1.2rem;
  }

  .fab i {
    line-height: 1;
    display: block;
  }

  .fab.phone {
    bottom: 80px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* Floating Action Button (FAB) - Hidden */
.fab {
  display: none !important;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success/Error Messages */
.message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
  animation: slideDown 0.3s ease;
}

.message.show {
  display: block;
}

.message.success {
  background: rgba(39, 174, 96, 0.1);
  border: 2px solid var(--success-color);
  color: var(--success-color);
}

.message.error {
  background: rgba(231, 76, 60, 0.1);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform-origin: right;
  transform: scaleX(0);
  z-index: 1001;
  transition: transform 0.1s ease;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: 90vw;
  max-height: 90vh;
  transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
  transform: translate(-50%, -50%) scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-image {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
  padding: 20px;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 0;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--accent-color);
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

/* ============================================
   Theme Switcher Styles - HIDDEN
   Brand colors are locked to Black Tie & Brass
   ============================================ */

#theme-selector {
  display: none !important; /* Hidden - Brand colors are fixed to Black Tie & Brass */
}

.theme-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  position: relative;
}

.theme-toggle-btn:hover {
  transform: scale(1.1) rotate(180deg);
  box-shadow: var(--shadow-glow);
  background: var(--primary-dark);
}

.theme-toggle-btn:active {
  transform: scale(0.95) rotate(180deg);
}

.theme-menu {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 320px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-strong);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 500px;
  overflow-y: auto;
  direction: rtl;
}

.theme-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-bg);
}

.theme-menu-header h4 {
  color: var(--secondary-color);
  margin: 0;
  font-size: 1.2rem;
  font-family: "Secular One", sans-serif;
}

.theme-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.theme-menu-close:hover {
  color: var(--accent-color);
  background: var(--light-bg);
  transform: rotate(90deg);
}

.theme-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid var(--light-bg);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: right;
  position: relative;
  width: 100%;
}

.theme-option:hover {
  border-color: var(--primary-color);
  transform: translateX(-5px);
  box-shadow: var(--shadow);
}

.theme-option.active {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.theme-preview {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.theme-color {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.theme-option:hover .theme-color {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.theme-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  text-align: right;
}

.theme-info strong {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
}

.theme-info span {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.4;
}

.theme-check {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Theme Notification */
.theme-notification {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  direction: rtl;
}

.theme-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.theme-notification i {
  font-size: 1.2rem;
}

/* Smooth theme transitions - applied to specific properties */
.theme-transition {
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Theme Switcher */
@media (max-width: 768px) {
  #theme-selector {
    bottom: 20px;
    left: 20px;
  }

  .theme-toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .theme-menu {
    width: calc(100vw - 40px);
    max-width: 300px;
    bottom: 70px;
    left: 20px;
    right: auto;
  }

  .theme-notification {
    left: 20px;
    right: 20px;
    transform: translateY(-20px);
    max-width: calc(100% - 40px);
  }

  .theme-notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .theme-menu {
    width: calc(100vw - 30px);
    max-width: 280px;
  }

  .theme-option {
    padding: 12px;
    gap: 12px;
  }

  .theme-color {
    width: 25px;
    height: 25px;
  }

  .theme-info strong {
    font-size: 0.9rem;
  }

  .theme-info span {
    font-size: 0.8rem;
  }
}

/* Floating Social Buttons */
.floating-social {
  position: fixed;
  left: 20px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
  background: var(--gradient-primary);
  overflow: visible;
}

.floating-btn i,
.floating-btn i.fab,
.floating-btn .fab,
.floating-btn [class*="fa-"] {
  position: relative;
  z-index: 1000 !important;
  font-size: 1.8rem !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1 !important;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .scroll-indicator {
    left: 15px;
  }

  .floating-social {
    left: 15px;
    bottom: 80px;
    gap: 12px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i,
  .floating-btn i.fab,
  .floating-btn .fab,
  .floating-btn [class*="fa-"] {
    font-size: 1.5rem !important;
  }
}

/* Full Article Page */
.article-full {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.article-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.article-header .article-date {
  display: block;
  margin-top: 15px;
  margin-bottom: 20px;
}

.article-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  line-height: 1.3;
  margin: 0;
}

.article-body {
  color: #444;
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-body p {
  margin-bottom: 20px;
}

.article-intro {
  font-size: 1.25rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 40px;
  padding: 25px;
  background: #f9f9f9;
  border-right: 4px solid var(--primary-color);
  border-radius: 8px;
}

.article-body h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.article-body h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.article-body ul,
.article-body ol {
  margin: 20px 0;
  padding-right: 30px;
}

.article-body li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.article-body strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.article-cta {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 15px;
  text-align: center;
  color: var(--white);
}

.article-cta h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.article-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.article-cta .btn {
  background: var(--white);
  color: var(--secondary-color);
}

.article-cta .btn:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .article-full {
    padding: 30px 20px;
    margin: 20px;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-intro {
    font-size: 1.1rem;
    padding: 20px;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-cta {
    padding: 30px 20px;
  }
}
