/* 
   Ripple Template Clone Styles
*/

:root {
  --bg-color: #060606;
  --text-color: #ffffff;
  --text-muted: #a0a0a0;
  --primary-blue: #0063f2;
  --primary-blue-hover: #0056d6;
  --accent-green: #0b2e21; /* Deep green for Bento */
  --accent-blue-dark: #0a1f3d; /* Deep blue for Bento */
  --card-bg: #111111;
  --border-color: #222222;
  --font-main: "DM Sans", sans-serif;

  --container-width: 1200px;
  --section-spacing: 120px;
  --radius-lg: 24px;
  --radius-md: 12px;
  --font-mono: "DM Mono", monospace;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

.section-heading {
  font-size: 3rem;
  margin-bottom: 20px;
}

.section-heading-center {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
}

.section-subheading {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 60px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-primary {
  background-color: var(--primary-blue);
  color: white;
}

.button-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
}

.button-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 16px;
}

.button-secondary:hover {
  border-color: white;
}

.button-white {
  background-color: white;
  color: var(--primary-blue);
}

.button-white:hover {
  background-color: #f0f0f0;
}

.button-transparent {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  margin-left: 16px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(6, 6, 6, 0.05); /* Very transparent */
  backdrop-filter: blur(15px); /* Stronger blur */
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: rgba(6, 6, 6, 0.5); /* Slightly more visible on scroll */
  backdrop-filter: blur(20px);
}

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

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8); /* Brighter for better visibility on video */
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  display: none;
  color: white;
  cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero-wrapper {
  position: relative;
  height: 250vh; /* Scroll track length */
  z-index: 1;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.hero-section.sticky-hero {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, border-radius, width, height;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Background Video Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Glow effect moved to inner so it scales */
.hero-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 99, 242, 0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 2;
    pointer-events: none;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 6, 0.7); /* Dark overlay to maximize contrast */
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-heading {
  font-size: 4rem;
  max-width: 900px;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Adding text shadow for better legibility on video */
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subheading {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.9);
}

.hero-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 32px;
}

/* Hero Visual - removed 'margin-top' since we are centering vertically,
   or we preserve it if we want the visual to be part of the flow */
.hero-visual {
  margin-top: 40px;
  /* Keeping the rest similar */
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 400px; /* Reduced specific height slightly for better 100vh fit */
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
  /* Hiding the old hero visual since we have a video now, or keep it if desired. 
       User didn't explicitly say remove it, but it might clutter. I'll hide it for now to match the clear video look. */
  display: none;
}

/* Infinite Slider Section */
.slider-section {
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  /* Aspect ratio or fixed height */
  height: 500px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 33.333%; /* Show 3 slides at a time */
  height: 100%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1); /* Separator */
}

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

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  z-index: 2;
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.slide-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 90%;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  z-index: 10;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: white;
  color: black;
}

.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* Slider Dots */
.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}

.skeleton-line {
  background: #333;
  height: 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.full {
  width: 100%;
}
.half {
  width: 60%;
}

.chart-mockup {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  margin-top: 20px;
}

.bar {
  width: 15%;
  background: var(--primary-blue);
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

.h-40 {
  height: 40%;
}
.h-70 {
  height: 70%;
}
.h-50 {
  height: 50%;
}
.h-90 {
  height: 90%;
}
.h-60 {
  height: 60%;
}

/* Sections */
.section {
  padding: var(--section-spacing) 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: 24px;
}

.bento-item {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

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

.item-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.item-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Spans */
.item-large-dark {
  grid-column: span 2;
  background: linear-gradient(135deg, #111 0%, #0d0d0d 100%);
}

.item-green {
  grid-column: span 1;
  background: radial-gradient(circle at top right, #0b3a2a 0%, #061f16 100%);
  color: #e0f2ea;
}

.item-green p {
  color: #8ebfaf;
}

.item-blue {
  grid-column: span 1;
  background: radial-gradient(circle at bottom left, #0a1f3d 0%, #061121 100%);
}

.item-small-dark {
  grid-column: span 2;
  background: #111;
}

/* Bento Visuals */
.item-visual {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.flow-visual {
  justify-content: flex-start;
  gap: 20px;
}

.flow-node {
  padding: 10px 20px;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 0.9rem;
}

.flow-node.success {
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
  border-color: rgba(39, 201, 63, 0.3);
}

.stats-visual {
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.stat-row .val {
  font-weight: 700;
}

.globe-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  position: relative;
}

.globe-circle::after {
  content: "●";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-blue);
  font-size: 20px;
}

.virtual-card {
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #333 0%, #111 100%);
  border-radius: 12px;
  border: 1px solid #444;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.virtual-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 20px;
  background: #555;
  border-radius: 4px;
}

/* Marquee */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee-label {
  text-align: center;
  margin-bottom: 40px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-track-container {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.brand-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #444;
  user-select: none;
}

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

/* Customers */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.customer-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.customer-card:hover {
  transform: translateY(-5px);
}

.customer-image {
  height: 200px;
  background-color: #222;
  position: relative;
}

/* CSS Placeholders for Images */
.placeholder-img-1 {
  background: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=800&auto=format&fit=crop")
    center/cover;
}
.placeholder-img-2 {
  background: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=800&auto=format&fit=crop")
    center/cover;
}
.placeholder-img-3 {
  background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=800&auto=format&fit=crop")
    center/cover;
}

.customer-content {
  padding: 32px;
}

.customer-content h4 {
  margin-bottom: 12px;
  color: white;
}

.customer-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-style: italic;
}

.read-story {
  color: var(--primary-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* CTA Section */
.cta-section {
  background: var(--primary-blue);
  margin: 60px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 100px 24px;
  color: white;
}

.cta-container h2 {
  font-size: 3.5rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: white;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  background: #111;
  border: 1px solid #333;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  flex-grow: 1;
}

.newsletter-form button {
  background: var(--primary-blue);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  color: var(--text-muted);
}

.copyright {
  text-align: center;
  color: #444;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .item-large-dark,
  .item-small-dark {
    grid-column: span 2;
  }
  .hero-heading {
    font-size: 3rem;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.menu-close {
  color: white;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0; /* Removing gap, using padding instead */
  width: 100%;
}

.mobile-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0); /* Placeholder if needed */
  cursor: pointer;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
}

.link-icon {
  width: 20px;
  height: 20px;
  color: white;
}

.mobile-nav-buttons {
  margin-top: auto;
  display: flex;
  gap: 16px;
  width: 100%;
}

.mobile-btn-login {
  flex: 1;
  background: transparent;
  border: 1px solid #333;
  color: white;
  border-radius: 99px;
  height: 50px;
}

.mobile-btn-start {
  flex: 1;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 99px;
  height: 50px;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }
  .menu-toggle {
    display: block;
    z-index: 1001; /* Above mobile menu */
  }

  .bento-grid {
    display: flex;
    flex-direction: column;
  }

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

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

  .cta-container h2 {
    font-size: 2.5rem;
  }

  .section-heading,
  .section-heading-center {
    font-size: 2.25rem;
  }

  .hero-heading {
    font-size: 2.5rem;
    padding: 0 10px;
  }

  .slide {
    min-width: 100%;
  }
  .hero-section {
    min-height: 100vh;
  }

  /* Adjust Bento items for mobile */
  .bento-item {
    padding: 24px;
    min-height: 300px;
  }

  .slider-container {
    height: 60vh; /* Better for mobile portrait */
  }
}

/* Company Modal Styles */
.company-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.company-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  background: #1a1a1a;
  padding: 0; /* Remove padding to allow image to flush */
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  z-index: 2001;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease, background-color 0.3s ease;
  overflow: hidden; /* Ensure image and content stay within border radius */
}

.modal-card.is-light {
  color: #111;
  border-color: rgba(0, 0, 0, 0.1);
}

.modal-card.is-light .modal-close {
  color: #111;
}

.modal-card.is-light .modal-right h2 {
  background: none;
  -webkit-text-fill-color: initial;
  color: #000;
}

.modal-card.is-light .modal-right p {
  color: #333;
}

.company-modal.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}

.modal-close:hover {
  transform: scale(1.1);
}

.modal-body h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.modal-body .button {
  width: auto;
  display: inline-flex;
}

/* Modal Grid Layout */
.modal-grid {
  display: flex;
  width: 100%;
  min-height: 400px; /* Minimum height for the modal */
}

.modal-left {
  width: 50%;
  position: relative;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-right {
  width: 50%;
  padding: 40px 40px 40px 40px; /* Padding inside the content area */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.modal-logo-container {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.modal-logo-container img {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Filter: brightness(0) invert(1); Default white logo if transparent PNG, handled by JS theme */
}

.modal-right {
  flex-grow: 1;
}

.modal-right h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Fix lint */
  margin-top: 0; /* Clear default */
}

.modal-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

/* Specific background styles handled by JS or inline styles */

@media (max-width: 768px) {
  .modal-grid {
      flex-direction: column;
  }
  .modal-left {
      width: 100%;
      height: 200px;
      margin-bottom: 0;
  }
  .modal-right {
      width: 100%;
      padding: 24px;
      text-align: center;
      align-items: center;
  }
  .modal-logo-container {
      justify-content: center;
  }
}

/* Slider Button Outline Styles */
.slide-info-btn {
  /* Inherits .button styles */
  padding: 10px 24px;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn-outline-dark {
  color: #000000;
  border-color: #000000;
}

.btn-outline-dark:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Modal Outline Button */
.btn-modal-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
  margin-top: 10px; /* Spacing */
}

.btn-modal-outline:hover {
  background: white;
  color: black;
}

/* Light Theme Modal Button Override */
.modal-card.is-light .btn-modal-outline {
  border-color: #000;
  color: #000;
}

.modal-card.is-light .btn-modal-outline:hover {
  background: #000;
  color: white;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-color);
  padding: 100px 0;
}

.contact-container {
  width: 100%;
  max-width: 1000px; /* Wider but not full 1200px edge-to-edge text */
  margin: 0 auto;
}

.contact-content {
  width: 100%;
}

.contact-section .section-heading-center {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--card-bg);
  padding: 60px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.span-2 {
  grid-column: span 2;
}

/* Mobile responsive adjustments for contact form */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .span-2 {
    grid-column: span 1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  background: #0a0a0a;
  border: 1px solid #333;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #111;
  box-shadow: 0 0 0 4px rgba(0, 99, 242, 0.1);
}

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