/* ==========================================================================
   VisualPro.Studio - Premium CSS Design System
   Modern, Dark Mode, Glassmorphic, 21st Century Visual Style
   ========================================================================== */

/* Custom Fonts Import */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Montserrat:300,400,600,700,800,900|Inter:300,400,500,600,700&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #070a13;
  --bg-secondary: #0c0f1d;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Accent Colors */
  --accent-orange: #ff7b00;
  --accent-orange-hover: #ff9f1c;
  --accent-orange-rgb: 255, 123, 0;
  --accent-cyan: #00f2fe;
  --accent-cyan-rgb: 0, 242, 254;
  
  /* Glassmorphism settings */
  --glass-bg: rgba(13, 17, 30, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(0, 242, 254, 0.15);
  
  /* Fonts */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --container-max: 1200px;
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Base Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(var(--accent-orange-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-orange-rgb), 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Header & Navigation */
header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

header.navbar.scrolled {
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

header.navbar.scrolled .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: #ffffff;
}

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

.nav-links li.active a {
  color: var(--accent-orange);
}

.nav-links li.active a::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Fullscreen Video Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(7, 10, 19, 0.4) 0%,
    rgba(7, 10, 19, 0.7) 60%,
    rgba(7, 10, 19, 1) 100%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 750px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.hero-content .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
}

.hero-content h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  padding-right: 0.1em;
  background: linear-gradient(135deg, #ffffff 60%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* About Section */
.section-padding {
  padding: 7rem 0;
}

.about {
  background-color: var(--bg-primary);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-cyan-rgb), 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin-top: 0.8rem;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text p strong {
  color: #ffffff;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  margin-bottom: 2rem;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: var(--font-headings);
  display: flex;
  align-items: center;
  gap: 2px;
}

.stat-num span {
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services Grid Section */
.services {
  background-color: var(--bg-secondary);
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-orange-rgb), 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.services-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.service-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(12, 15, 29, 0.1) 0%,
    rgba(12, 15, 29, 0.6) 50%,
    rgba(7, 10, 19, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.play-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(var(--accent-orange-rgb), 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(var(--accent-orange-rgb), 0.4);
  opacity: 0.85;
  transition: var(--transition-smooth);
  z-index: 3;
}

/* Service Card Hover States */
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-orange-rgb), 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

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

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(12, 15, 29, 0.05) 0%,
    rgba(7, 10, 19, 0.8) 40%,
    rgba(7, 10, 19, 0.98) 100%
  );
}

.service-card:hover .service-icon-box {
  background: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(var(--accent-orange-rgb), 0.4);
}

.service-card:hover h3 {
  color: var(--accent-orange);
}

.service-card:hover p {
  opacity: 1;
  max-height: 100px;
  margin-top: 0.5rem;
}

.service-card:hover .play-badge {
  transform: scale(1.1) rotate(360deg);
  opacity: 1;
  background: var(--accent-orange);
}

/* Double column display for wide layout */
.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Detail Blocks for Deep Dive */
.services-detailed {
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 6rem;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.service-detail-block:last-child {
  margin-bottom: 0;
}

.service-detail-block:nth-child(even) {
  direction: rtl;
}

.service-detail-block:nth-child(even) .detail-text {
  direction: ltr;
}

.detail-visual {
  position: relative;
}

.detail-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.detail-img-wrapper img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.detail-img-wrapper:hover img {
  transform: scale(1.03);
}

.detail-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(var(--accent-orange-rgb), 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(var(--accent-orange-rgb), 0.6);
  transition: var(--transition-smooth);
  z-index: 5;
}

.detail-video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-orange-hover);
  box-shadow: 0 0 35px rgba(var(--accent-orange-rgb), 0.8);
}

.detail-text {
  max-width: 500px;
}

.detail-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  font-family: var(--font-headings);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.detail-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-primary);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: rgba(var(--accent-orange-rgb), 0.08);
}

.stars {
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.stars i {
  margin-right: 3px;
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-cyan);
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background-color: var(--bg-secondary);
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(13, 17, 30, 0.4);
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(var(--accent-orange-rgb), 0.1);
  border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-method-card:hover .contact-icon {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 0 15px rgba(var(--accent-orange-rgb), 0.4);
}

.contact-method-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.contact-method-card p {
  font-size: 1.2rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--accent-cyan);
  color: #070a13;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--accent-cyan-rgb), 0.4);
  border-color: transparent;
}

.social-btn.facebook:hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.youtube:hover {
  background: #ff0000;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-btn.linkedin:hover {
  background: #0077b5;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Map Container */
.map-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  height: 450px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  filter: grayscale(1) invert(0.92) contrast(1.1); /* Elegant dark map effect */
}

/* Footer styling */
footer {
  background-color: #04060b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto 1.5rem auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-orange);
}

.footer-credits {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
}

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

.scroll-to-top:hover {
  background: var(--accent-orange);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--accent-orange-rgb), 0.4);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  padding: 1.8rem;
  border: 1px solid var(--glass-border);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-header i {
  color: var(--accent-orange);
}

.cookie-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--accent-orange);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: var(--accent-orange-hover);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Lightbox Modal for Video */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 11, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 50px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.lightbox.show .lightbox-content {
  transform: scale(1);
}

.lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-orange);
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-detail-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-detail-block:nth-child(even) {
    direction: ltr;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  header.navbar {
    padding: 1rem 0;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0c0f1d;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 6rem 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1000;
  }
  
  .hero-content {
    padding: 1.5rem;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* Animations Elements Scroll Reveal class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
