/* Vortexbridge - Main Stylesheet */

/* Import custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --vortexbridge-teal: #309898;
  --vortexbridge-orange: #FF9F00;
  --vortexbridge-coral: #F4631E;
  --vortexbridge-red: #CB0404;
  --vortexbridge-white: #ffffff;
  --vortexbridge-light: #f8f9fa;
  --vortexbridge-dark: #212529;
  --vortexbridge-gray: #6c757d;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Font sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-xxl: 2rem;
  --font-xxxl: 3rem;
  
  /* Font weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--vortexbridge-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--vortexbridge-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: var(--space-md);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--vortexbridge-dark);
}

h1 {
  font-size: var(--font-xxxl);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: var(--font-xxl);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: var(--font-xl);
}

h4 {
  font-size: var(--font-lg);
}

h5, h6 {
  font-size: var(--font-md);
}

p {
  margin-bottom: var(--space-md);
}

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

a:hover {
  color: var(--vortexbridge-coral);
}

img {
  max-width: 100%;
  height: auto;
}

button, .vortexbridge-btn {
  display: inline-block;
  background-color: var(--vortexbridge-teal);
  color: var(--vortexbridge-white);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: var(--weight-medium);
  font-size: var(--font-md);
  transition: all var(--transition-fast);
  text-align: center;
}

button:hover, .vortexbridge-btn:hover {
  background-color: var(--vortexbridge-coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--vortexbridge-dark);
}

.vortexbridge-btn-secondary {
  background-color: var(--vortexbridge-orange);
}

.vortexbridge-btn-secondary:hover {
  background-color: var(--vortexbridge-coral);
}

.vortexbridge-btn-tertiary {
  background-color: var(--vortexbridge-coral);
}

.vortexbridge-btn-tertiary:hover {
  background-color: var(--vortexbridge-red);
}

.vortexbridge-btn-accent {
  background-color: var(--vortexbridge-red);
}

.vortexbridge-btn-accent:hover {
  background-color: #a30303; /* Darker red on hover */
}

.vortexbridge-btn-outline {
  background-color: transparent;
  border: 2px solid var(--vortexbridge-teal);
  color: var(--vortexbridge-teal);
}

.vortexbridge-btn-outline:hover {
  background-color: var(--vortexbridge-teal);
  color: var(--vortexbridge-white);
}

.vortexbridge-btn-outline-orange {
  background-color: transparent;
  border: 2px solid var(--vortexbridge-orange);
  color: var(--vortexbridge-orange);
}

.vortexbridge-btn-outline-orange:hover {
  background-color: var(--vortexbridge-orange);
  color: var(--vortexbridge-white);
}

.vortexbridge-btn-outline-coral {
  background-color: transparent;
  border: 2px solid var(--vortexbridge-coral);
  color: var(--vortexbridge-coral);
}

.vortexbridge-btn-outline-coral:hover {
  background-color: var(--vortexbridge-coral);
  color: var(--vortexbridge-white);
}

ul, ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

/* Container */
.vortexbridge-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header */
.vortexbridge-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--vortexbridge-white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
}

.vortexbridge-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vortexbridge-logo {
  display: flex;
  align-items: center;
}

.vortexbridge-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-xl);
  font-weight: var(--weight-bold);
  color: var(--vortexbridge-teal);
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.vortexbridge-logo-text:hover {
  color: var(--vortexbridge-coral);
}

/* Navigation */
.vortexbridge-nav-desktop {
  display: flex;
}

.vortexbridge-nav-mobile {
  display: none;
}

.vortexbridge-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-xl);
  color: var(--vortexbridge-teal);
  cursor: pointer;
}

.vortexbridge-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vortexbridge-nav-item {
  margin-left: var(--space-lg);
}

.vortexbridge-nav-link {
  color: var(--vortexbridge-dark);
  font-weight: var(--weight-medium);
  position: relative;
}

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

.vortexbridge-nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--vortexbridge-coral);
  transition: width var(--transition-fast);
}

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

/* Active navigation item */
.vortexbridge-nav-link.active {
  color: var(--vortexbridge-orange);
}

.vortexbridge-nav-link.active:after {
  background-color: var(--vortexbridge-orange);
  width: 100%;
}

/* Hero Section */
.vortexbridge-hero {
  position: relative;
  padding: var(--space-xxl) 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.jpg') no-repeat center/cover;
  color: var(--vortexbridge-white);
  text-align: center;
}

.vortexbridge-hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--vortexbridge-teal), var(--vortexbridge-orange), var(--vortexbridge-coral), var(--vortexbridge-red));
}

.vortexbridge-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.vortexbridge-hero h1 {
  color: var(--vortexbridge-white);
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vortexbridge-hero p {
  font-size: var(--font-lg);
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.vortexbridge-hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* Section Styles */
.vortexbridge-section {
  padding: var(--space-xxl) 0;
}

.vortexbridge-section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.vortexbridge-section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--vortexbridge-teal), var(--vortexbridge-orange));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.vortexbridge-section-subtitle {
  text-align: center;
  color: var(--vortexbridge-gray);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* About Section */
.vortexbridge-about {
  background-color: var(--vortexbridge-light);
  position: relative;
}

.vortexbridge-about:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--vortexbridge-orange);
  opacity: 0.7;
}

.vortexbridge-about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.vortexbridge-about-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--vortexbridge-white);
  position: relative;
}

.vortexbridge-about-image:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 2px solid var(--vortexbridge-orange);
  border-radius: calc(var(--radius-lg) - 5px);
  opacity: 0.4;
  pointer-events: none;
}

.vortexbridge-about-text {
  flex: 1;
}

.vortexbridge-about-text h3 {
  color: var(--vortexbridge-coral);
}

/* Services Section */
.vortexbridge-services {
  position: relative;
}

.vortexbridge-services:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--vortexbridge-teal);
  opacity: 0.7;
}

.vortexbridge-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.vortexbridge-service-card {
  background-color: var(--vortexbridge-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
  border-bottom: 3px solid transparent;
  display: flex;
justify-content: space-between;
flex-direction: column;
}

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

.vortexbridge-service-card:nth-child(3n+1) {
  border-bottom-color: var(--vortexbridge-teal);
}

.vortexbridge-service-card:nth-child(3n+2) {
  border-bottom-color: var(--vortexbridge-orange);
}

.vortexbridge-service-card:nth-child(3n+3) {
  border-bottom-color: var(--vortexbridge-coral);
}

.vortexbridge-service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.vortexbridge-service-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
  z-index: 1;
}

.vortexbridge-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.vortexbridge-service-card:hover .vortexbridge-service-image img {
  transform: scale(1.05);
}

.vortexbridge-service-content {
  padding: var(--space-lg);
}

.vortexbridge-service-title {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

.vortexbridge-service-card:nth-child(3n+1) .vortexbridge-service-title {
  color: var(--vortexbridge-teal);
}

.vortexbridge-service-card:nth-child(3n+2) .vortexbridge-service-title {
  color: var(--vortexbridge-orange);
}

.vortexbridge-service-card:nth-child(3n+3) .vortexbridge-service-title {
  color: var(--vortexbridge-coral);
}

.vortexbridge-service-description {
  color: var(--vortexbridge-gray);
  margin-bottom: var(--space-md);
}

/* Products Section */
.vortexbridge-products {
  background-color: var(--vortexbridge-light);
  position: relative;
}

.vortexbridge-products:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--vortexbridge-coral);
  opacity: 0.7;
}

.vortexbridge-products .vortexbridge-section-title {
  color: var(--vortexbridge-coral);
}

.vortexbridge-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.vortexbridge-pricing-card {
  background-color: var(--vortexbridge-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.vortexbridge-pricing-card:nth-child(1) {
  border-top: 5px solid var(--vortexbridge-teal);
}

.vortexbridge-pricing-card:nth-child(2) {
  border-top: 5px solid var(--vortexbridge-orange);
}

.vortexbridge-pricing-card:nth-child(3) {
  border-top: 5px solid var(--vortexbridge-red);
}

.vortexbridge-pricing-popular {
  border: 2px solid var(--vortexbridge-orange) !important;
  position: relative;
}

.vortexbridge-pricing-popular:before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--vortexbridge-orange);
  color: var(--vortexbridge-white);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-xs);
  border-bottom-left-radius: var(--radius-sm);
}

.vortexbridge-pricing-icon {
  margin-bottom: var(--space-md);
  font-size: 48px;
}

.vortexbridge-pricing-card:nth-child(1) .vortexbridge-pricing-icon {
  color: var(--vortexbridge-teal);
}

.vortexbridge-pricing-card:nth-child(2) .vortexbridge-pricing-icon {
  color: var(--vortexbridge-orange);
}

.vortexbridge-pricing-card:nth-child(3) .vortexbridge-pricing-icon {
  color: var(--vortexbridge-red);
}

.vortexbridge-pricing-title {
  margin-bottom: var(--space-md);
}

.vortexbridge-pricing-card:nth-child(1) .vortexbridge-pricing-title {
  color: var(--vortexbridge-teal);
}

.vortexbridge-pricing-card:nth-child(2) .vortexbridge-pricing-title {
  color: var(--vortexbridge-orange);
}

.vortexbridge-pricing-card:nth-child(3) .vortexbridge-pricing-title {
  color: var(--vortexbridge-red);
}

.vortexbridge-pricing-price {
  font-size: var(--font-xxl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
}

.vortexbridge-pricing-card:nth-child(1) .vortexbridge-pricing-price {
  color: var(--vortexbridge-teal);
}

.vortexbridge-pricing-card:nth-child(2) .vortexbridge-pricing-price {
  color: var(--vortexbridge-orange);
}

.vortexbridge-pricing-card:nth-child(3) .vortexbridge-pricing-price {
  color: var(--vortexbridge-red);
}

.vortexbridge-pricing-duration {
  font-size: var(--font-sm);
  color: var(--vortexbridge-gray);
}

.vortexbridge-pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.vortexbridge-pricing-feature {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vortexbridge-pricing-feature:last-child {
  border-bottom: none;
}

/* Journey Section */
.vortexbridge-journey {
  position: relative;
  background: linear-gradient(to right, rgba(48, 152, 152, 0.05), rgba(255, 159, 0, 0.05));
}

.vortexbridge-journey:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--vortexbridge-red);
  opacity: 0.7;
}

.vortexbridge-journey-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.vortexbridge-journey-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--vortexbridge-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.vortexbridge-journey-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vortexbridge-journey-step:nth-child(5n+1) {
  border-bottom: 3px solid var(--vortexbridge-teal);
}

.vortexbridge-journey-step:nth-child(5n+2) {
  border-bottom: 3px solid var(--vortexbridge-orange);
}

.vortexbridge-journey-step:nth-child(5n+3) {
  border-bottom: 3px solid var(--vortexbridge-coral);
}

.vortexbridge-journey-step:nth-child(5n+4) {
  border-bottom: 3px solid var(--vortexbridge-red);
}

.vortexbridge-journey-step:nth-child(5n+5) {
  border-bottom: 3px solid var(--vortexbridge-teal);
}

.vortexbridge-journey-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
}

.vortexbridge-journey-step:nth-child(5n+1) .vortexbridge-journey-icon {
  color: var(--vortexbridge-teal);
}

.vortexbridge-journey-step:nth-child(5n+2) .vortexbridge-journey-icon {
  color: var(--vortexbridge-orange);
}

.vortexbridge-journey-step:nth-child(5n+3) .vortexbridge-journey-icon {
  color: var(--vortexbridge-coral);
}

.vortexbridge-journey-step:nth-child(5n+4) .vortexbridge-journey-icon {
  color: var(--vortexbridge-red);
}

.vortexbridge-journey-step:nth-child(5n+5) .vortexbridge-journey-icon {
  color: var(--vortexbridge-teal);
}

.vortexbridge-journey-step h3 {
  margin-bottom: var(--space-sm);
}

.vortexbridge-journey-step:nth-child(5n+1) h3 {
  color: var(--vortexbridge-teal);
}

.vortexbridge-journey-step:nth-child(5n+2) h3 {
  color: var(--vortexbridge-orange);
}

.vortexbridge-journey-step:nth-child(5n+3) h3 {
  color: var(--vortexbridge-coral);
}

.vortexbridge-journey-step:nth-child(5n+4) h3 {
  color: var(--vortexbridge-red);
}

.vortexbridge-journey-step:nth-child(5n+5) h3 {
  color: var(--vortexbridge-teal);
}

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

.vortexbridge-testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--vortexbridge-teal), var(--vortexbridge-orange));
  opacity: 0.7;
}

.vortexbridge-testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.vortexbridge-testimonial-slide {
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 var(--space-md);
}

.vortexbridge-testimonial-quote {
  font-size: var(--font-lg);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
  color: var(--vortexbridge-dark);
}

.vortexbridge-testimonial-quote:before,
.vortexbridge-testimonial-quote:after {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  position: absolute;
  opacity: 0.2;
}

.vortexbridge-testimonial-quote:before {
  content: '"';
  top: -20px;
  left: -20px;
  color: var(--vortexbridge-orange);
}

.vortexbridge-testimonial-quote:after {
  content: '"';
  bottom: -40px;
  right: -20px;
  color: var(--vortexbridge-coral);
}

.vortexbridge-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vortexbridge-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  margin-right: var(--space-md);
  border: 2px solid var(--vortexbridge-teal);
}

.vortexbridge-testimonial-name {
  font-weight: var(--weight-bold);
  color: var(--vortexbridge-coral);
}

.vortexbridge-testimonial-role {
  color: var(--vortexbridge-gray);
  font-size: var(--font-sm);
}

.vortexbridge-testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  gap: var(--space-sm);
}

.vortexbridge-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-circle);
  background-color: rgba(48, 152, 152, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.vortexbridge-testimonial-dot:hover {
  background-color: var(--vortexbridge-teal);
}

.vortexbridge-testimonial-dot.active {
  background-color: var(--vortexbridge-orange);
  transform: scale(1.2);
}

/* Gallery Section */
.vortexbridge-gallery {
  position: relative;
  background-color: var(--vortexbridge-light);
}

.vortexbridge-gallery:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--vortexbridge-coral);
  opacity: 0.7;
}

.vortexbridge-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.vortexbridge-gallery-item {
  position: relative;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.vortexbridge-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.vortexbridge-gallery-item:hover img {
  transform: scale(1.1);
}

.vortexbridge-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(48, 152, 152, 0.7), 
    rgba(255, 159, 0, 0.7)
  );
  color: var(--vortexbridge-white);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.vortexbridge-gallery-item:hover .vortexbridge-gallery-overlay {
  opacity: 1;
}

.vortexbridge-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  display: none;
  justify-content: center;
  align-items: center;
}

.vortexbridge-gallery-modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.vortexbridge-gallery-modal-image {
  max-width: 100%;
  max-height: 100%;
  border: 5px solid var(--vortexbridge-white);
  box-shadow: var(--shadow-lg);
}

.vortexbridge-gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--vortexbridge-white);
  font-size: 30px;
  cursor: pointer;
  z-index: 1002;
  transition: color var(--transition-fast);
}

.vortexbridge-gallery-modal-close:hover {
  color: var(--vortexbridge-red);
}

.vortexbridge-gallery-modal-prev,
.vortexbridge-gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vortexbridge-white);
  font-size: 50px;
  cursor: pointer;
  z-index: 1002;
  transition: all var(--transition-fast);
}

.vortexbridge-gallery-modal-prev:hover,
.vortexbridge-gallery-modal-next:hover {
  color: var(--vortexbridge-orange);
  transform: translateY(-50%) scale(1.1);
}

.vortexbridge-gallery-modal-prev {
  left: 20px;
}

.vortexbridge-gallery-modal-next {
  right: 20px;
}

/* Contact Section */
.vortexbridge-contact {
  position: relative;
  background: linear-gradient(to bottom, var(--vortexbridge-light), var(--vortexbridge-white));
}

.vortexbridge-contact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--vortexbridge-red);
  opacity: 0.7;
}

.vortexbridge-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.vortexbridge-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.vortexbridge-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: transform var(--transition-fast);
}

.vortexbridge-contact-item:hover {
  transform: translateX(5px);
}

.vortexbridge-contact-icon {
  font-size: 24px;
}

.vortexbridge-contact-item:nth-child(4n+1) .vortexbridge-contact-icon {
  color: var(--vortexbridge-teal);
}

.vortexbridge-contact-item:nth-child(4n+2) .vortexbridge-contact-icon {
  color: var(--vortexbridge-orange);
}

.vortexbridge-contact-item:nth-child(4n+3) .vortexbridge-contact-icon {
  color: var(--vortexbridge-coral);
}

.vortexbridge-contact-item:nth-child(4n+4) .vortexbridge-contact-icon {
  color: var(--vortexbridge-red);
}

.vortexbridge-contact-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--vortexbridge-dark);
}

.vortexbridge-contact-form form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--vortexbridge-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--vortexbridge-coral);
}

.vortexbridge-form-group {
  display: flex;
  flex-direction: column;
}

.vortexbridge-form-label {
  margin-bottom: var(--space-xs);
  font-weight: var(--weight-medium);
  color: var(--vortexbridge-dark);
}

.vortexbridge-form-input,
.vortexbridge-form-textarea,
.vortexbridge-form-select {
  padding: var(--space-sm);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  transition: all var(--transition-fast);
}

.vortexbridge-form-input:focus,
.vortexbridge-form-textarea:focus,
.vortexbridge-form-select:focus {
  outline: none;
  border-color: var(--vortexbridge-orange);
  box-shadow: 0 0 0 2px rgba(255, 159, 0, 0.2);
}

.vortexbridge-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.vortexbridge-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

/* Footer */
.vortexbridge-footer {
  background-color: var(--vortexbridge-dark);
  color: var(--vortexbridge-white);
  padding: var(--space-xl) 0;
  position: relative;
}

.vortexbridge-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--vortexbridge-teal), var(--vortexbridge-orange), var(--vortexbridge-coral), var(--vortexbridge-red));
}

.vortexbridge-footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.vortexbridge-footer-logo {
  color: var(--vortexbridge-white);
  font-family: 'Playfair Display', serif;
  font-size: var(--font-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-md);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.vortexbridge-footer-about {
  color: rgba(255, 255, 255, 0.7);
}

.vortexbridge-footer-heading {
  color: var(--vortexbridge-white);
  margin-bottom: var(--space-lg);
  font-size: var(--font-lg);
  position: relative;
}

.vortexbridge-footer-heading:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -8px;
  left: 0;
}

.vortexbridge-footer-content > div:nth-child(4n+1) .vortexbridge-footer-heading:after {
  background-color: var(--vortexbridge-teal);
}

.vortexbridge-footer-content > div:nth-child(4n+2) .vortexbridge-footer-heading:after {
  background-color: var(--vortexbridge-orange);
}

.vortexbridge-footer-content > div:nth-child(4n+3) .vortexbridge-footer-heading:after {
  background-color: var(--vortexbridge-coral);
}

.vortexbridge-footer-content > div:nth-child(4n+4) .vortexbridge-footer-heading:after {
  background-color: var(--vortexbridge-red);
}

.vortexbridge-footer-links {
  list-style: none;
  padding: 0;
}

.vortexbridge-footer-link {
  margin-bottom: var(--space-sm);
  transition: transform var(--transition-fast);
}

.vortexbridge-footer-link:hover {
  transform: translateX(5px);
}

.vortexbridge-footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.vortexbridge-footer-content > div:nth-child(4n+1) .vortexbridge-footer-link a:hover {
  color: var(--vortexbridge-teal);
}

.vortexbridge-footer-content > div:nth-child(4n+2) .vortexbridge-footer-link a:hover {
  color: var(--vortexbridge-orange);
}

.vortexbridge-footer-content > div:nth-child(4n+3) .vortexbridge-footer-link a:hover {
  color: var(--vortexbridge-coral);
}

.vortexbridge-footer-content > div:nth-child(4n+4) .vortexbridge-footer-link a:hover {
  color: var(--vortexbridge-red);
}

.vortexbridge-footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.vortexbridge-social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--vortexbridge-white);
  transition: all var(--transition-fast);
}

.vortexbridge-social-icon:nth-child(4n+1):hover {
  background-color: var(--vortexbridge-teal);
  transform: translateY(-3px);
}

.vortexbridge-social-icon:nth-child(4n+2):hover {
  background-color: var(--vortexbridge-orange);
  transform: translateY(-3px);
}

.vortexbridge-social-icon:nth-child(4n+3):hover {
  background-color: var(--vortexbridge-coral);
  transform: translateY(-3px);
}

.vortexbridge-social-icon:nth-child(4n+4):hover {
  background-color: var(--vortexbridge-red);
  transform: translateY(-3px);
}

.vortexbridge-footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-sm);
}

/* Success Page */
.vortexbridge-success {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  background: linear-gradient(135deg, rgba(48, 152, 152, 0.05) 0%, rgba(255, 159, 0, 0.05) 50%, rgba(244, 99, 30, 0.05) 100%);
}

.vortexbridge-success-icon {
  font-size: 80px;
  color: var(--vortexbridge-teal);
  animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
  0% {
    transform: scale(1);
    color: var(--vortexbridge-teal);
  }
  50% {
    transform: scale(1.1);
    color: var(--vortexbridge-orange);
  }
  100% {
    transform: scale(1);
    color: var(--vortexbridge-teal);
  }
}

.vortexbridge-success-title {
  margin-bottom: var(--space-md);
  color: var(--vortexbridge-coral);
}

.vortexbridge-success-message {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.vortexbridge-success-cta {
  margin-bottom: var(--space-lg);
}

.vortexbridge-success-time {
  color: var(--vortexbridge-gray);
  font-size: var(--font-sm);
}

/* Policy Pages */
.vortexbridge-policy {
  padding: var(--space-xxl) 0;
}

.vortexbridge-policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.vortexbridge-policy-heading {
  margin-bottom: var(--space-lg);
  color: var(--vortexbridge-teal);
  position: relative;
  display: inline-block;
}

.vortexbridge-policy-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--vortexbridge-teal), var(--vortexbridge-orange));
}

.vortexbridge-policy-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vortexbridge-policy-section:last-child {
  border-bottom: none;
}

.vortexbridge-policy-section-title {
  margin-bottom: var(--space-md);
  color: var(--vortexbridge-coral);
}

/* Custom icon designs */
.vortexbridge-icon {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
}

/* Animations */
.vortexbridge-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.vortexbridge-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.vortexbridge-text-teal {
  color: var(--vortexbridge-teal);
}

.vortexbridge-text-orange {
  color: var(--vortexbridge-orange);
}

.vortexbridge-text-coral {
  color: var(--vortexbridge-coral);
}

.vortexbridge-text-red {
  color: var(--vortexbridge-red);
}

.vortexbridge-bg-teal {
  background-color: var(--vortexbridge-teal);
  color: var(--vortexbridge-white);
}

.vortexbridge-bg-orange {
  background-color: var(--vortexbridge-orange);
  color: var(--vortexbridge-white);
}

.vortexbridge-bg-coral {
  background-color: var(--vortexbridge-coral);
  color: var(--vortexbridge-white);
}

.vortexbridge-bg-red {
  background-color: var(--vortexbridge-red);
  color: var(--vortexbridge-white);
}

.vortexbridge-border-teal {
  border-color: var(--vortexbridge-teal);
}

.vortexbridge-border-orange {
  border-color: var(--vortexbridge-orange);
}

.vortexbridge-border-coral {
  border-color: var(--vortexbridge-coral);
}

.vortexbridge-border-red {
  border-color: var(--vortexbridge-red);
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --font-xxxl: 2.5rem;
    --font-xxl: 1.875rem;
    --font-xl: 1.375rem;
  }
  
  .vortexbridge-services-grid,
  .vortexbridge-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vortexbridge-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .vortexbridge-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  :root {
    --font-xxxl: 2.25rem;
    --font-xxl: 1.75rem;
    --font-xl: 1.25rem;
    --font-lg: 1.125rem;
    --space-xxl: 4rem;
    --space-xl: 2.5rem;
    --space-lg: 1.5rem;
  }
  
  .vortexbridge-nav-desktop {
    display: none;
  }
  
  .vortexbridge-nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--vortexbridge-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-medium);
    z-index: 1001;
  }
  
  .vortexbridge-nav-mobile.active {
    right: 0;
  }
  
  .vortexbridge-nav-toggle {
    display: block;
    z-index:9999;
  }
  
  .vortexbridge-nav-menu {
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
  }
  
  .vortexbridge-nav-item {
    margin: var(--space-md) 0;
  }
  
  .vortexbridge-about-content {
    flex-direction: column;
  }
  
  .vortexbridge-contact-content {
    grid-template-columns: 1fr;
  }
  
  /* Increase fonts and spacing for better mobile experience */
  body {
    font-size: 18px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  .vortexbridge-section {
    padding: 4rem 0;
  }
  
  .vortexbridge-btn {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
  }
  
  .vortexbridge-journey-steps {
    justify-content: space-around;
  }
  
  .vortexbridge-journey-step {
    min-width: 250px;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --font-xxxl: 2rem;
    --font-xxl: 1.625rem;
    --font-xl: 1.25rem;
    --space-xxl: 3.5rem;
    --space-xl: 2.25rem;
  }
  
  .vortexbridge-services-grid,
  .vortexbridge-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .vortexbridge-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vortexbridge-journey-step {
    flex: 0 0 calc(50% - var(--space-lg));
  }
      h2 {
        font-size: 1.6rem
    }
}

@media (max-width: 480px) {
  :root {
    --font-xxxl: 1.75rem;
    --font-xxl: 1.5rem;
    --font-xl: 1.25rem;
    --space-xxl: 3rem;
    --space-xl: 2rem;
  }
  
  .vortexbridge-hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .vortexbridge-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .vortexbridge-footer-content {
    grid-template-columns: 1fr;
  }
  
  .vortexbridge-journey-step {
    flex: 0 0 100%;
  }
}

@media (max-width: 360px) {
  :root {
    --font-xxxl: 1.65rem;
    --font-xxl: 1.4rem;
    --font-xl: 1.15rem;
    --space-xxl: 2.5rem;
    --space-xl: 1.75rem;
  }
  
  body {
    font-size: 16px;
  }
  
  .vortexbridge-header {
    padding: var(--space-sm) 0;
  }
  
  .vortexbridge-logo-text {
    font-size: 1.25rem;
  }
  
  .vortexbridge-testimonial-author {
    flex-direction: column;
    align-items: center;
  }
  
  .vortexbridge-testimonial-avatar {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
}