/* VRLogoTech Legal Consulting - CSS Stylesheet */

/* CSS Custom Properties */
:root {
  --vrlogotech-primary: #123458;
  --vrlogotech-secondary: #d4c9be;
  --vrlogotech-light: #f1efec;
  --vrlogotech-white: #ffffff;
  --vrlogotech-dark: #030303;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;

  --vrlogotech-font-primary: 'Playfair Display', serif;
  --vrlogotech-font-secondary: 'Inter', sans-serif;

  --vrlogotech-shadow: 0 4px 6px rgba(18, 52, 88, 0.1);
  --vrlogotech-shadow-lg: 0 10px 15px rgba(18, 52, 88, 0.15);
  --vrlogotech-transition: all 0.3s ease;
  --vrlogotech-border-radius: 8px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--vrlogotech-font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vrlogotech-dark);
  background-color: var(--vrlogotech-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--vrlogotech-transition);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--vrlogotech-font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: var(--space-sm);
}

/* Container */
.vrlogotech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.vrlogotech-btn-primary,
.vrlogotech-btn-secondary {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--vrlogotech-border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--vrlogotech-transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.vrlogotech-btn-primary {
  background-color: var(--vrlogotech-primary);
  color: var(--vrlogotech-white);
  box-shadow: var(--vrlogotech-shadow);
}

.vrlogotech-btn-primary:hover {
  background-color: var(--vrlogotech-dark);
  transform: translateY(-2px);
  box-shadow: var(--vrlogotech-shadow-lg);
}

.vrlogotech-btn-secondary {
  background-color: transparent;
  color: var(--vrlogotech-primary);
  border-color: var(--vrlogotech-secondary);
}

.vrlogotech-btn-secondary:hover {
  background-color: var(--vrlogotech-secondary);
  color: var(--vrlogotech-primary);
  transform: translateY(-2px);
}

/* Navigation */
.vrlogotech-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--vrlogotech-white);
  box-shadow: var(--vrlogotech-shadow);
  z-index: 1000;
  padding: var(--space-xs) 0;
}

.vrlogotech-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.vrlogotech-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.vrlogotech-brand-text {
  font-family: var(--vrlogotech-font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vrlogotech-primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.vrlogotech-nav-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.vrlogotech-nav-menu a {
  font-weight: 500;
  color: var(--vrlogotech-primary);
  transition: var(--vrlogotech-transition);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--vrlogotech-border-radius);
}

.vrlogotech-nav-menu a:hover {
  background-color: var(--vrlogotech-light);
  transform: translateY(-1px);
}

.vrlogotech-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.vrlogotech-nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--vrlogotech-primary);
  transition: var(--vrlogotech-transition);
}

/* Hero Section */
.vrlogotech-hero {
  padding: 120px 0 var(--space-xxl);
  background: linear-gradient(
    135deg,
    var(--vrlogotech-light) 0%,
    var(--vrlogotech-white) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vrlogotech-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.vrlogotech-hero-title {
  font-size: 4rem;
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-md);
  animation: vrlogotech-fadeInUp 1s ease-out;
}

.vrlogotech-highlight {
  color: var(--vrlogotech-secondary);
  position: relative;
}

.vrlogotech-hero-subtitle {
  font-size: 1.2rem;
  color: var(--vrlogotech-dark);
  margin-bottom: var(--space-lg);
  opacity: 0.8;
  animation: vrlogotech-fadeInUp 1s ease-out 0.2s both;
}

.vrlogotech-hero-cta {
  display: flex;
  gap: var(--space-md);
  animation: vrlogotech-fadeInUp 1s ease-out 0.4s both;
}

.vrlogotech-hero-visual {
  display: flex;
  justify-content: center;
  animation: vrlogotech-fadeInRight 1s ease-out 0.6s both;
}

.vrlogotech-hero-image {
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--vrlogotech-transition);
}

.vrlogotech-hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Section Styles */
section {
  padding: var(--space-xxl) 0;
}

.vrlogotech-section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.vrlogotech-section-title {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-md);
}

.vrlogotech-section-subtitle {
  font-size: 1.1rem;
  color: var(--vrlogotech-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.vrlogotech-services {
  background-color: var(--vrlogotech-light);
}

.vrlogotech-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.vrlogotech-service-card {
  background-color: var(--vrlogotech-white);
  padding: var(--space-xl);
  border-radius: var(--vrlogotech-border-radius);
  box-shadow: var(--vrlogotech-shadow);
  text-align: center;
  transition: var(--vrlogotech-transition);
  border: 1px solid var(--vrlogotech-secondary);
}

.vrlogotech-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vrlogotech-shadow-lg);
}

.vrlogotech-service-icon {
  margin: 0 auto var(--space-md);
  transition: var(--vrlogotech-transition);
}

.vrlogotech-service-card:hover .vrlogotech-service-icon {
  transform: scale(1.1);
}

.vrlogotech-service-title {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-sm);
}

.vrlogotech-service-description {
  color: var(--vrlogotech-dark);
  opacity: 0.8;
  line-height: 1.6;
}

/* Pricing Section */
.vrlogotech-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.vrlogotech-pricing-card {
  background-color: var(--vrlogotech-white);
  padding: var(--space-xl);
  border-radius: var(--vrlogotech-border-radius);
  box-shadow: var(--vrlogotech-shadow);
  text-align: center;
  transition: var(--vrlogotech-transition);
  border: 2px solid var(--vrlogotech-secondary);
  position: relative;
}

.vrlogotech-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vrlogotech-shadow-lg);
}

.vrlogotech-pricing-featured {
  border-color: var(--vrlogotech-primary);
  transform: scale(1.05);
}

.vrlogotech-pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--vrlogotech-primary);
  color: var(--vrlogotech-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.vrlogotech-pricing-title {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-md);
}

.vrlogotech-pricing-price {
  margin-bottom: var(--space-lg);
}

.vrlogotech-price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vrlogotech-primary);
  font-family: var(--vrlogotech-font-primary);
}

.vrlogotech-price-period {
  font-size: 1rem;
  color: var(--vrlogotech-dark);
  opacity: 0.7;
}

.vrlogotech-pricing-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.vrlogotech-pricing-features li {
  padding: var(--space-xs) 0;
  color: var(--vrlogotech-dark);
  border-bottom: 1px solid var(--vrlogotech-light);
}

.vrlogotech-pricing-features li:before {
  content: '✓';
  color: var(--vrlogotech-primary);
  font-weight: bold;
  margin-right: var(--space-sm);
}

/* Process Section */
.vrlogotech-process {
  background-color: var(--vrlogotech-light);
}

.vrlogotech-process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.vrlogotech-process-step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.vrlogotech-process-number {
  background-color: var(--vrlogotech-primary);
  color: var(--vrlogotech-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--vrlogotech-shadow);
}

.vrlogotech-process-title {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-sm);
}

.vrlogotech-process-description {
  color: var(--vrlogotech-dark);
  opacity: 0.8;
  line-height: 1.6;
}

/* Gallery Section */
.vrlogotech-gallery-container {
  max-width: 800px;
  margin: 0 auto;
}

.vrlogotech-gallery-main {
  margin-bottom: var(--space-lg);
  border-radius: var(--vrlogotech-border-radius);
  overflow: hidden;
  box-shadow: var(--vrlogotech-shadow-lg);
}

.vrlogotech-gallery-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--vrlogotech-transition);
  cursor: pointer;
}

.vrlogotech-gallery-image:hover {
  transform: scale(1.05);
}

.vrlogotech-gallery-thumbnails {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.vrlogotech-gallery-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--vrlogotech-border-radius);
  cursor: pointer;
  transition: var(--vrlogotech-transition);
  border: 3px solid transparent;
}

.vrlogotech-gallery-thumb:hover,
.vrlogotech-gallery-thumb.active {
  border-color: var(--vrlogotech-primary);
  transform: scale(1.1);
}

/* Testimonials Section */
.vrlogotech-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.vrlogotech-testimonial-card {
  background-color: var(--vrlogotech-white);
  padding: var(--space-xl);
  border-radius: var(--vrlogotech-border-radius);
  box-shadow: var(--vrlogotech-shadow);
  transition: var(--vrlogotech-transition);
  border: 1px solid var(--vrlogotech-secondary);
}

.vrlogotech-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vrlogotech-shadow-lg);
}

.vrlogotech-testimonial-text {
  font-style: italic;
  color: var(--vrlogotech-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  font-size: 1.1rem;
}

.vrlogotech-testimonial-text:before {
  content: '';
  font-size: 2rem;
  color: var(--vrlogotech-secondary);
  line-height: 1;
}

.vrlogotech-testimonial-text:after {
  content: '';
  font-size: 2rem;
  color: var(--vrlogotech-secondary);
  line-height: 1;
}

.vrlogotech-author-name {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-xs);
}

.vrlogotech-author-position {
  color: var(--vrlogotech-dark);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Contact Section */
.vrlogotech-contact {
  background-color: var(--vrlogotech-light);
}

.vrlogotech-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
}

.vrlogotech-contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: center;
}

.vrlogotech-contact-icon {
  flex-shrink: 0;
}

.vrlogotech-contact-title {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-xs);
}

.vrlogotech-contact-value {
  color: var(--vrlogotech-dark);
  font-weight: 500;
}

/* Form Styles */
.vrlogotech-contact-form {
  background-color: var(--vrlogotech-white);
  padding: var(--space-xl);
  border-radius: var(--vrlogotech-border-radius);
  box-shadow: var(--vrlogotech-shadow);
}

.vrlogotech-form-group {
  margin-bottom: var(--space-md);
}

.vrlogotech-form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--vrlogotech-primary);
  font-weight: 500;
}

.vrlogotech-form-input,
.vrlogotech-form-select,
.vrlogotech-form-textarea {
  width: 100%;
  padding: var(--space-xs);
  border: 2px solid var(--vrlogotech-secondary);
  border-radius: var(--vrlogotech-border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--vrlogotech-transition);
  background-color: var(--vrlogotech-white);
}

.vrlogotech-form-input:focus,
.vrlogotech-form-select:focus,
.vrlogotech-form-textarea:focus {
  outline: none;
  border-color: var(--vrlogotech-primary);
  box-shadow: 0 0 0 3px rgba(18, 52, 88, 0.1);
}

.vrlogotech-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.vrlogotech-footer {
  background-color: var(--vrlogotech-primary);
  color: var(--vrlogotech-white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.vrlogotech-footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xxl);
  margin-bottom: var(--space-lg);
}

.vrlogotech-footer-brand .vrlogotech-brand-text {
  color: var(--vrlogotech-white);
}

.vrlogotech-footer-description {
  margin-top: var(--space-md);
  opacity: 0.8;
  line-height: 1.6;
}

.vrlogotech-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.vrlogotech-footer-title {
  color: var(--vrlogotech-secondary);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.vrlogotech-footer-list li {
  margin-bottom: var(--space-xs);
}

.vrlogotech-footer-list a {
  color: var(--vrlogotech-white);
  opacity: 0.8;
  transition: var(--vrlogotech-transition);
}

.vrlogotech-footer-list a:hover {
  opacity: 1;
  color: var(--vrlogotech-secondary);
}

.vrlogotech-footer-bottom {
  border-top: 1px solid rgba(241, 239, 236, 0.2);
  padding-top: var(--space-lg);
  text-align: center;
}

.vrlogotech-footer-copyright {
  opacity: 0.7;
}

/* Thank You Page Styles */
.vrlogotech-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--vrlogotech-light) 0%,
    var(--vrlogotech-white) 100%
  );
}

.vrlogotech-thankyou-container {
  text-align: center;
  max-width: 600px;
  background-color: var(--vrlogotech-white);
  padding: var(--space-xxl);
  border-radius: var(--vrlogotech-border-radius);
  box-shadow: var(--vrlogotech-shadow-lg);
  -webkit-border-radius: var(--vrlogotech-border-radius);
  -moz-border-radius: var(--vrlogotech-border-radius);
  -ms-border-radius: var(--vrlogotech-border-radius);
  -o-border-radius: var(--vrlogotech-border-radius);
}

.vrlogotech-thankyou-icon {
  margin: 0 auto var(--space-lg);
  animation: vrlogotech-scaleIn 0.8s ease-out;
}

.vrlogotech-thankyou-title {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-md);
  animation: vrlogotech-fadeInUp 0.8s ease-out 0.2s both;
}

.vrlogotech-thankyou-message {
  color: var(--vrlogotech-dark);
  opacity: 0.8;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  animation: vrlogotech-fadeInUp 0.8s ease-out 0.4s both;
}

.vrlogotech-thankyou-cta {
  animation: vrlogotech-fadeInUp 0.8s ease-out 0.6s both;
}

/* Legal Pages Styles */
.vrlogotech-legal {
  padding: 120px 0 var(--space-xxl);
  min-height: 100vh;
}

.vrlogotech-legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--vrlogotech-white);
  padding: var(--space-xxl);
  border-radius: var(--vrlogotech-border-radius);
  box-shadow: var(--vrlogotech-shadow);
}

.vrlogotech-legal h1 {
  color: var(--vrlogotech-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.vrlogotech-legal h2 {
  color: var(--vrlogotech-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.vrlogotech-legal h3 {
  color: var(--vrlogotech-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.vrlogotech-legal p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: var(--vrlogotech-dark);
}

.vrlogotech-legal li {
  margin-bottom: var(--space-xs);
  line-height: 1.6;
  color: var(--vrlogotech-dark);
}

.vrlogotech-legal a {
  color: var(--vrlogotech-primary);
  text-decoration: underline;
}

.vrlogotech-legal a:hover {
  color: var(--vrlogotech-secondary);
}

.vrlogotech-legal-back {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Animations */
@keyframes vrlogotech-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vrlogotech-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vrlogotech-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  :root {
    --space-sm: 1.2rem;
    --space-md: 1.8rem;
    --space-lg: 2.4rem;
    --space-xl: 3.6rem;
    --space-xxl: 4.8rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  body {
    font-size: 18px;
  }

  .vrlogotech-hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .vrlogotech-hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .vrlogotech-nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: var(--vrlogotech-white);
    width: 100%;
    padding: var(--space-lg);
    box-shadow: var(--vrlogotech-shadow);
    transition: var(--vrlogotech-transition);
    gap: var(--space-md);
  }

  .vrlogotech-nav-menu.active {
    left: 0;
  }

  .vrlogotech-nav-toggle {
    display: flex;
  }

  .vrlogotech-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .vrlogotech-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .vrlogotech-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .vrlogotech-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .vrlogotech-footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .vrlogotech-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .vrlogotech-services-grid,
  .vrlogotech-pricing-grid,
  .vrlogotech-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .vrlogotech-pricing-featured {
    transform: none;
  }

  .vrlogotech-gallery-thumbnails {
    flex-wrap: wrap;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  :root {
    --space-sm: 1.4rem;
    --space-md: 2rem;
    --space-lg: 2.8rem;
    --space-xl: 4rem;
    --space-xxl: 5.2rem;
  }

  body {
    font-size: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .vrlogotech-container {
    padding: 0 var(--space-sm);
  }

  .vrlogotech-nav-container {
    padding: 0 var(--space-sm);
  }

  .vrlogotech-hero {
    padding: 100px 0 var(--space-xl);
  }

  .vrlogotech-hero-title {
    font-size: 2.5rem;
  }

  .vrlogotech-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .vrlogotech-btn-primary,
  .vrlogotech-btn-secondary {
    padding: var(--space-xs);
    font-size: 1.1rem;
    width: 100%;
    max-width: 280px;
  }

  .vrlogotech-service-card,
  .vrlogotech-pricing-card,
  .vrlogotech-testimonial-card {
    padding: var(--space-lg);
  }

  .vrlogotech-contact-form {
    padding: var(--space-lg);
  }

  .vrlogotech-process-step {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .vrlogotech-process-number {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
    margin: 0 auto;
  }

  .vrlogotech-gallery-thumbnails {
    justify-content: center;
  }

  .vrlogotech-gallery-thumb {
    width: 100px;
    height: 70px;
  }

  .vrlogotech-footer-links {
    grid-template-columns: 1fr;
  }

  .vrlogotech-thankyou-container {
    padding: var(--space-md);
    margin: var(--space-sm);
  }

  .vrlogotech-legal-content {
    padding: var(--space-xs);
    margin: 0 var(--space-xs);
  }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
  :root {
    --space-sm: 1.6rem;
    --space-md: 2.2rem;
    --space-lg: 3rem;
    --space-xl: 4.4rem;
    --space-xxl: 5.6rem;
  }

  body {
    font-size: 22px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .vrlogotech-hero-title {
    font-size: 2.2rem;
  }

  .vrlogotech-price-amount {
    font-size: 2.5rem;
  }

  .vrlogotech-brand-text {
    font-size: 1.3rem;
  }

  .vrlogotech-service-card,
  .vrlogotech-pricing-card,
  .vrlogotech-testimonial-card,
  .vrlogotech-contact-form {
    padding: var(--space-md);
  }

  .vrlogotech-process-number {
    width: 90px;
    height: 90px;
    font-size: 2rem;
  }

  .vrlogotech-hero-visual,
  .vrlogotech-hero-visual > div,
  .vrlogotech-hero-visual > div > svg {
    width: 100%;
  }
}

/* Responsive Design - Extra Small */
@media (max-width: 360px) {
  :root {
    --space-sm: 1.8rem;
    --space-md: 2.4rem;
    --space-lg: 3.2rem;
    --space-xl: 4.8rem;
    --space-xxl: 6rem;
  }

  body {
    font-size: 24px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .vrlogotech-hero-title {
    font-size: 2rem;
  }

  .vrlogotech-nav-container {
    padding: 0 var(--space-xs);
  }

  .vrlogotech-container {
    padding: 0 var(--space-xs);
  }

  .vrlogotech-form-input,
  .vrlogotech-form-select,
  .vrlogotech-form-textarea {
    padding: var(--space-xs);
    font-size: 1.1rem;
  }

  .vrlogotech-contact-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .vrlogotech-process-number {
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
  }
}

/* Utility Classes */
.vrlogotech-text-center {
  text-align: center;
}

.vrlogotech-mb-lg {
  margin-bottom: var(--space-lg);
}

.vrlogotech-mt-lg {
  margin-top: var(--space-lg);
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--vrlogotech-primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .vrlogotech-nav,
  .vrlogotech-footer,
  .vrlogotech-btn-primary,
  .vrlogotech-btn-secondary {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}
