/* ===================================
   Ads Hub - Responsive Styles
   Media Queries for All Breakpoints
   =================================== */

/* ===================================
   Mobile First Approach
   Base styles are for mobile (320px+)
   =================================== */

/* ===================================
   Mobile Navigation (up to 1120px)
   =================================== */
@media (max-width: 1120px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop menu by default */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-20) var(--space-6);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
  }

  /* Show menu when active */
  .nav-menu.active {
    right: 0;
    top: 60px;
    gap: 15px;
    overflow-y:clip;
  }

  /* Mobile menu items */
  .nav-menu li {
    width: 100%;
    top: -60px;
  }

  .nav-link {
    width: 100%;
    padding: var(--space-4) 0;
    justify-content: space-between;
  }

  /* Dropdown wrapper on mobile */
  .dropdown-wrapper {
    width: 100%;
  }

  /* Mobile dropdown menu (accordion style) */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    
    border-radius: 0;
  }

  .dropdown-wrapper.active .dropdown-menu {
    max-height: 500px;
    padding: var(--space-2) 0;
  }

  /* Mobile dropdown items */
  .dropdown-item {
    margin: 0;
    border-radius: 0;
    padding: var(--space-3) var(--space-4);
    border-radius: 17px;
  }

  .dropdown-item:hover {
    transform: none;
  }

  /* Hide overlay on mobile */
  .dropdown-overlay {
    display: none;
  }

  /* Adjust navbar container */
  .nav-container {
    padding: var(--space-3) var(--space-4);
  }

  /* Logo size on mobile */
  .logo-text {
    font-size: var(--text-lg);
  }
}

/* ===================================
   Small Devices (Phones, 320px and up)
   =================================== */
@media (min-width: 320px) {
  /* Base mobile styles - already defined in main.css */
}

/* ===================================
   Medium Devices (Desktops, 1121px and up)
   =================================== */
@media (min-width: 1121px) {
  /* Hide mobile menu toggle on desktop */
  .mobile-menu-toggle {
    display: none;
  }

  /* Show desktop menu */
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  /* Reset mobile styles */
  .nav-menu li {
    width: auto;
    border-bottom: none;
  }

  .nav-link {
    width: auto;
    padding: var(--space-2) var(--space-3);
  }

  /* Dropdown menu back to absolute positioning */
  .dropdown-menu {
    position: absolute;
    max-height: none;
    overflow: visible;
  }
}

/* ===================================
   Large Devices (Desktops, 1024px and up)
   =================================== */
@media (min-width: 1024px) {
  /* Increase spacing on desktop */
  .nav-container {
    padding: var(--space-5) var(--space-8);
  }

  .nav-menu {
    gap: var(--space-10);
  }

  /* Larger logo on desktop */
  .logo-text {
    font-size: var(--text-2xl);
  }
}

/* ===================================
   Extra Large Devices (Large Desktops, 1280px and up)
   =================================== */
@media (min-width: 1280px) {
  /* Large desktop-specific styles will be added here */
  .nav-container {
    max-width: 1400px;
  }
}

/* ===================================
   HERO SECTION RESPONSIVE STYLES
   =================================== */

/* Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-grid {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: var(--text-xl);
  }
}

/* Large Desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero-grid {
    gap: var(--space-12);
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .floating-card {
    padding: var(--space-3);
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-value {
    font-size: var(--text-lg);
  }
}

/* Laptop / Small Desktop (1121px - 1279px) */
@media (min-width: 1121px) and (max-width: 1279px) {
  .hero {
    padding: var(--space-8) 0;
    min-height: 80vh;
    max-height: 80vh;
  }
  
  .container {
    padding: var(--space-3) var(--space-6);
  }
  
  .hero-grid {
    gap: var(--space-6);
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  
  .hero-badge svg {
    width: 12px;
    height: 12px;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  
  .hero-description {
    font-size: 14px;
    max-width: 480px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .hero-cta {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .hero-cta .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  
  .hero-stats-inline {
    gap: 12px;
  }
  
  .stat-inline .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-inline .stat-plus {
    font-size: 1rem;
  }
  
  .stat-inline .stat-text {
    font-size: 11px;
  }
  
  .stat-divider {
    height: 28px;
  }
  
  .hero-visual {
    max-height: 75vh;
    display: flex;
    align-items: center;
  }
  
  .hero-image-wrapper {
    max-width: 450px;
    max-height: 70vh;
  }
  
  .hero-image {
    border-radius: var(--radius-xl);
    max-height: 70vh;
    object-fit: cover;
  }
  
  .floating-card {
    padding: 8px 10px;
  }
  
  .card-icon {
    width: 32px;
    height: 32px;
  }
  
  .card-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .card-value {
    font-size: 13px;
  }
  
  .card-label {
    font-size: 9px;
  }
  
  .card-1 {
    left: -5%;
    top: 8%;
  }
  
  .card-2 {
    right: -5%;
  }
  
  .card-3 {
    left: -2%;
    bottom: 8%;
  }
  
  .decoration-1 {
    top: 10px;
    left: 10px;
  }
  
  .decoration-2 {
    width: 50px;
    height: 50px;
  }
}

/* Small Laptop (1024px - 1120px) */
@media (min-width: 1024px) and (max-width: 1120px) {
  .hero {
    padding: var(--space-8) 0;
    min-height: 75vh;
    max-height: 75vh;
  }
  
  .container {
    padding: var(--space-2) var(--space-4);
  }
  
  .hero-grid {
    gap: var(--space-4);
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 12px;
  }
  
  .hero-badge svg {
    width: 11px;
    height: 11px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  
  .highlight-text::after {
    height: 5px;
    bottom: 2px;
  }
  
  .hero-description {
    font-size: 13px;
    max-width: 400px;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  
  .hero-cta {
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .hero-cta .btn {
    padding: 9px 16px;
    font-size: 12px;
  }
  
  .hero-stats-inline {
    gap: 10px;
  }
  
  .stat-inline .stat-number {
    font-size: 1rem;
  }
  
  .stat-inline .stat-plus {
    font-size: 0.875rem;
  }
  
  .stat-inline .stat-text {
    font-size: 10px;
  }
  
  .stat-divider {
    height: 20px;
  }
  
  .hero-visual {
    display: flex;
    align-items: center;
    max-height: 70vh;
  }
  
  .hero-image-wrapper {
    max-width: 380px;
    max-height: 65vh;
    width: 100%;
  }
  
  .hero-image {
    border-radius: var(--radius-xl);
    max-height: 65vh;
    object-fit: cover;
  }
  
  .floating-card {
    padding: 6px 8px;
  }
  
  .card-icon {
    width: 24px;
    height: 24px;
  }
  
  .card-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .card-value {
    font-size: 11px;
  }
  
  .card-label {
    font-size: 8px;
  }
  
  .card-1 {
    top: 3%;
    left: -3%;
  }
  
  .card-2 {
    top: 50%;
    right: -3%;
  }
  
  .card-3 {
    bottom: 3%;
    left: -1%;
  }
  
  .decoration-1 {
    top: 8px;
    left: 8px;
  }
  
  .decoration-2 {
    width: 35px;
    height: 35px;
    bottom: -8px;
    right: -8px;
  }
  
  .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
  }
  
  .circle-2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -60px;
  }
  
  .decoration-dots {
    width: 50px;
    height: 50px;
    background-size: 10px 10px;
  }
}

/* Tablet Landscape & Small Desktop (769px - 1120px) */
@media (min-width: 769px) and (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding: var(--space-20) 0 var(--space-16);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: var(--space-5);
  }
  
  .hero-description {
    font-size: var(--text-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-6);
  }
  
  .hero-cta {
    justify-content: center;
    margin-bottom: var(--space-10);
  }
  
  .hero-cta .btn {
    padding: var(--space-4) var(--space-7);
  }
  
  .hero-stats-inline {
    justify-content: center;
    gap: var(--space-8);
  }
  
  .stat-inline .stat-number {
    font-size: var(--text-3xl);
  }
  
  .stat-inline .stat-plus {
    font-size: var(--text-2xl);
  }
  
  .stat-inline .stat-text {
    font-size: var(--text-base);
  }
  
  .stat-divider {
    height: 50px;
  }
  
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-image-wrapper {
    margin: 0 auto;
  }
  
  /* Hide floating cards on tablet */
  .floating-card {
    display: none;
  }
  
  /* Simplify decorations */
  .circle-1 {
    width: 400px;
    height: 400px;
  }
  
  .circle-2 {
    width: 300px;
    height: 300px;
  }
}

/* Mobile Landscape & Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: var(--space-2) var(--space-3);
    margin-bottom: var(--space-5);
  }
  
  .hero-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: var(--space-4);
    line-height: 1.2;
  }
  
  .highlight-text::after {
    height: 8px;
    bottom: 4px;
  }
  
  .hero-description {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    max-width: 100%;
    line-height: 1.6;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    padding: var(--space-4) var(--space-6);
    justify-content: center;
  }
  
  .hero-stats-inline {
    flex-direction: column;
    gap: var(--space-5);
    align-items: center;
  }
  
  .stat-inline {
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    text-align: center;
  }
  
  .stat-inline .stat-number {
    font-size: var(--text-3xl);
  }
  
  .stat-inline .stat-plus {
    font-size: var(--text-2xl);
  }
  
  .stat-inline .stat-text {
    font-size: var(--text-sm);
    margin-left: 0;
    margin-top: var(--space-1);
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-visual {
    max-width: 100%;
  }
  
  .hero-image-wrapper {
    max-width: 100%;
  }
  
  .hero-image {
    border-radius: var(--radius-xl);
  }
  
  /* Hide decorations */
  .floating-card,
  .decoration-circle,
  .decoration-dots {
    display: none;
  }
  
  .image-decoration {
    display: none;
  }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: var(--space-2) var(--space-3);
    margin-bottom: var(--space-5);
    gap: var(--space-1);
  }
  
  .hero-badge svg {
    width: 12px;
    height: 12px;
  }
  
  .hero-title {
    font-size: 1.875rem;
    margin-bottom: var(--space-5);
    line-height: 1.2;
  }
  
  .highlight-text::after {
    height: 6px;
    bottom: 3px;
  }
  
  .hero-description {
    font-size: 15px;
    margin-bottom: var(--space-6);
    line-height: 1.6;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-size: 15px;
    justify-content: center;
  }
  
  .hero-stats-inline {
    flex-direction: column;
    gap: var(--space-5);
    align-items: center;
  }
  
  .stat-inline {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
  }
  
  .stat-inline .stat-number {
    font-size: var(--text-3xl);
  }
  
  .stat-inline .stat-plus {
    font-size: var(--text-2xl);
  }
  
  .stat-inline .stat-text {
    font-size: 13px;
    margin-left: var(--space-2);
    margin-top: 0;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-visual {
    max-width: 100%;
  }
  
  .hero-image-wrapper {
    max-width: 100%;
  }
  
  .hero-image {
    border-radius: var(--radius-xl);
  }
  
  /* Hide all decorations */
  .floating-card,
  .decoration-circle,
  .decoration-dots,
  .image-decoration {
    display: none;
  }
}

/* Very Small Mobile (< 375px) */
@media (max-width: 374px) {
  .hero {
    padding: var(--space-10) 0 var(--space-8);
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 13px;
  }
  
  .hero-cta .btn {
    padding: var(--space-3) var(--space-4);
    font-size: 13px;
  }
  
  .stat-inline .stat-number {
    font-size: var(--text-xl);
  }
  
  .stat-inline .stat-plus {
    font-size: var(--text-lg);
  }
  
  .stat-inline .stat-text {
    font-size: 11px;
  }
}

/* ===================================
   SERVICES SECTION RESPONSIVE STYLES
   =================================== */

/* Tablet Landscape & Small Desktop (769px - 1120px) */
@media (min-width: 769px) and (max-width: 1120px) {
  .services-section {
    padding: var(--space-16) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-12);
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  
  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .service-card {
    padding: var(--space-8);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Landscape & Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .services-section {
    padding: var(--space-12) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-10);
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .service-card {
    padding: var(--space-8);
  }
  
  .service-icon {
    width: 64px;
    height: 64px;
  }
  
  .service-title {
    font-size: var(--text-xl);
  }
  
  .service-description {
    font-size: var(--text-sm);
  }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .services-section {
    padding: var(--space-10) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-8);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .section-title::after {
    width: 50px;
    height: 3px;
  }
  
  .section-subtitle {
    font-size: var(--text-sm);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-10);
  }
  
  .service-card {
    padding: var(--space-6);
  }
  
  .service-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-5);
  }
  
  .service-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .service-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
  }
  
  .service-description {
    font-size: var(--text-sm);
    margin-bottom: var(--space-5);
  }
  
  .service-features {
    margin-bottom: var(--space-6);
  }
  
  .service-features li {
    font-size: 13px;
    padding: var(--space-2) 0;
    padding-left: var(--space-10);
  }
  
  .service-features li::before {
    width: 18px;
    height: 18px;
  }
  
  .service-features li::after {
    left: 5px;
    font-size: 11px;
  }
  
  .service-link {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-4);
  }
}

/* Very Small Mobile (< 375px) */
@media (max-width: 374px) {
  .services-section {
    padding: var(--space-8) 0;
  }
  
  .section-title {
    font-size: var(--text-xl);
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .service-card {
    padding: var(--space-5);
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
  }
  
  .service-title {
    font-size: var(--text-lg);
  }
  
  .service-description {
    font-size: 13px;
  }
}



/* ===================================
   WHY CHOOSE US SECTION RESPONSIVE - Modern Layout
   =================================== */

/* Tablet Landscape & Small Desktop (769px - 1120px) */
@media (min-width: 769px) and (max-width: 1120px) {
  .why-choose-us-section {
    padding: var(--space-20) 0;
  }
  
  .benefits-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: var(--space-5);
  }
  
  .large-card {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .medium-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .small-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .benefit-card-modern {
    padding: var(--space-8);
  }
  
  .benefit-icon-modern {
    width: 70px;
    height: 70px;
  }
  
  .benefit-number {
    font-size: 3rem;
  }
}

/* Mobile Landscape & Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .why-choose-us-section {
    padding: var(--space-16) 0;
  }
  
  .why-choose-us-section .section-title {
    font-size: 2rem;
  }
  
  .why-choose-us-section .section-subtitle {
    font-size: var(--text-base);
  }
  
  .benefits-grid-modern {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  
  .large-card,
  .medium-card,
  .small-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .benefit-card-modern {
    padding: var(--space-8);
  }
  
  .benefit-icon-modern {
    width: 64px;
    height: 64px;
  }
  
  .benefit-icon-modern svg {
    width: 36px;
    height: 36px;
  }
  
  .benefit-number {
    font-size: 2.5rem;
  }
  
  .benefit-title-modern,
  .large-card .benefit-title-modern {
    font-size: var(--text-xl);
  }
  
  .benefit-description-modern,
  .large-card .benefit-description-modern {
    font-size: var(--text-sm);
  }
  
  .benefit-stats {
    gap: var(--space-6);
  }
  
  .stat-value {
    font-size: var(--text-2xl);
  }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .why-choose-us-section {
    padding: var(--space-12) 0;
  }
  
  .why-choose-us-section::before,
  .why-choose-us-section::after {
    width: 400px;
    height: 400px;
  }
  
  .section-badge {
    font-size: 12px;
    padding: var(--space-2) var(--space-4);
  }
  
  .why-choose-us-section .section-title {
    font-size: 1.75rem;
  }
  
  .why-choose-us-section .section-subtitle {
    font-size: var(--text-sm);
    margin-top: var(--space-4);
  }
  
  .benefits-grid-modern {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-12);
  }
  
  .large-card,
  .medium-card,
  .small-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .benefit-card-modern {
    padding: var(--space-6);
  }
  
  .benefit-card-modern:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .card-background-pattern {
    width: 150px;
    height: 150px;
  }
  
  .benefit-number {
    font-size: 2rem;
    top: var(--space-4);
    right: var(--space-4);
  }
  
  .benefit-icon-modern {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-5);
  }
  
  .benefit-icon-modern svg {
    width: 32px;
    height: 32px;
  }
  
  .benefit-card-modern:hover .benefit-icon-modern {
    transform: scale(1.05) rotate(-5deg);
  }
  
  .benefit-title-modern,
  .large-card .benefit-title-modern {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
  }
  
  .benefit-description-modern,
  .large-card .benefit-description-modern {
    font-size: 13px;
  }
  
  .benefit-stats {
    gap: var(--space-5);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
  }
  
  .stat-value {
    font-size: var(--text-xl);
  }
  
  .stat-label {
    font-size: 11px;
  }
}

/* Very Small Mobile (< 375px) */
@media (max-width: 374px) {
  .why-choose-us-section {
    padding: var(--space-10) 0;
  }
  
  .why-choose-us-section .section-title {
    font-size: 1.5rem;
  }
  
  .benefit-card-modern {
    padding: var(--space-5);
  }
  
  .benefit-icon-modern {
    width: 48px;
    height: 48px;
  }
  
  .benefit-number {
    font-size: 1.75rem;
  }
  
  .benefit-title-modern,
  .large-card .benefit-title-modern {
    font-size: var(--text-base);
  }
  
  .benefit-description-modern,
  .large-card .benefit-description-modern {
    font-size: 12px;
  }
  
  .stat-value {
    font-size: var(--text-lg);
  }
}


/* ===================================
   CTA SECTION RESPONSIVE - Clean Minimalist Design
   =================================== */

/* Tablet & Small Desktop (769px - 1120px) */
@media (min-width: 769px) and (max-width: 1120px) {
  .cta-card-wrapper {
    padding: var(--space-16) var(--space-10);
  }
  
  .cta-title-clean {
    font-size: 2.25rem;
  }
  
  .cta-floating-icon {
    width: 50px;
    height: 50px;
  }
  
  .cta-floating-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .cta-section {
    padding: var(--space-16) 0;
  }
  
  .cta-card-wrapper {
    padding: var(--space-12) var(--space-8);
  }
  
  .cta-title-clean {
    font-size: 2rem;
  }
  
  .cta-subtitle-clean {
    font-size: var(--text-base);
  }
  
  .cta-floating-icon {
    width: 45px;
    height: 45px;
  }
  
  .cta-floating-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* Adjust icon positions for tablet */
  .cta-floating-icon:nth-child(1) {
    top: 10%;
    left: 5%;
  }
  
  .cta-floating-icon:nth-child(2) {
    top: 15%;
    right: 5%;
  }
  
  .cta-floating-icon:nth-child(5),
  .cta-floating-icon:nth-child(6) {
    display: none;
  }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .cta-section {
    padding: var(--space-12) 0;
  }
  
  .cta-card-wrapper {
    padding: var(--space-10) var(--space-6);
    border-radius: 1.5rem;
  }
  
  .cta-badge {
    font-size: 12px;
    padding: var(--space-2) var(--space-3);
  }
  
  .cta-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .cta-title-clean {
    font-size: 1.75rem;
  }
  
  .cta-subtitle-clean {
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
  }
  
  .btn-cta-blue {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
  }
  
  /* Hide some floating icons on mobile */
  .cta-floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .cta-floating-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .cta-floating-icon:nth-child(3),
  .cta-floating-icon:nth-child(4),
  .cta-floating-icon:nth-child(5),
  .cta-floating-icon:nth-child(6) {
    display: none;
  }
  
  .cta-floating-icon:nth-child(1) {
    top: 8%;
    left: 5%;
  }
  
  .cta-floating-icon:nth-child(2) {
    top: 12%;
    right: 5%;
  }
}

/* Very Small Mobile (< 375px) */
@media (max-width: 374px) {
  .cta-card-wrapper {
    padding: var(--space-8) var(--space-5);
  }
  
  .cta-title-clean {
    font-size: 1.5rem;
  }
  
  .cta-subtitle-clean {
    font-size: 13px;
  }
  
  .cta-floating-icon {
    width: 35px;
    height: 35px;
  }
  
  .cta-floating-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ===================================
   SERVICE PAGES RESPONSIVE
   =================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Service Hero */
    .service-hero {
        height: 50vh;
        min-height: 400px;
    }

    .service-hero .hero-title {
        font-size: var(--text-3xl);
    }

    .service-hero .hero-subtitle {
        font-size: var(--text-lg);
    }

    /* Service Description */
    .service-description .container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .service-description .description-image {
        position: static;
        order: -1;
    }

    .service-description .description-content h2 {
        font-size: var(--text-3xl);
    }

    .service-description .description-content h3 {
        font-size: var(--text-xl);
    }

    /* Service Benefits */
    .service-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    /* Service Process */
    .process-step {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .process-step:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .process-step:nth-child(even) .step-content {
        order: 2;
    }

    .process-step:nth-child(even) .step-image {
        order: 3;
    }

    .step-number {
        font-size: var(--text-3xl);
    }

    .step-image img {
        height: 250px;
    }

    /* Service CTA */
    .service-cta .cta-card {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-12);
    }

    .service-cta .cta-left h2 {
        font-size: var(--text-3xl);
    }

    .service-cta .cta-subtitle {
        font-size: var(--text-base);
    }

    .service-cta .cta-benefits li {
        font-size: var(--text-base);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Service Hero */
    .service-hero {
        height: 40vh;
        min-height: 350px;
    }

    .service-hero .hero-title {
        font-size: var(--text-2xl);
    }

    .service-hero .hero-subtitle {
        font-size: var(--text-base);
    }

    /* Service Description */
    .service-description {
        padding: var(--space-12) 0;
    }

    .service-description .description-content h2 {
        font-size: var(--text-2xl);
    }

    .service-description .description-content h3 {
        font-size: var(--text-lg);
        margin-top: var(--space-6);
    }

    .service-description .description-content p {
        font-size: var(--text-base);
    }

    /* Service Benefits */
    .service-benefits {
        padding: var(--space-12) 0;
    }

    .service-benefits .section-title {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-8);
    }

    .service-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .benefit-card {
        padding: var(--space-6);
    }

    /* Service Process */
    .service-process {
        padding: var(--space-12) 0;
    }

    .service-process .section-title {
        font-size: var(--text-2xl);
    }

    .service-process .section-subtitle {
        font-size: var(--text-base);
    }

    .service-process .process-steps {
        gap: var(--space-10);
    }

    .step-number {
        font-size: var(--text-2xl);
    }

    .step-content h3 {
        font-size: var(--text-xl);
    }

    .step-image img {
        height: 200px;
    }

    /* Service CTA */
    .service-cta {
        padding: var(--space-12) 0;
    }

    .service-cta .cta-card {
        padding: var(--space-8);
    }

    .service-cta .cta-left h2 {
        font-size: var(--text-2xl);
    }

    .service-cta .cta-subtitle {
        font-size: var(--text-base);
    }

    .service-cta .cta-subtext {
        font-size: var(--text-sm);
    }

    .service-cta .cta-button {
        width: 100%;
        justify-content: center;
        font-size: var(--text-base);
    }

    .service-cta .cta-benefits li {
        font-size: var(--text-base);
    }

    /* Footer */
    .footer {
        padding-top: var(--space-12);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom {
        padding: var(--space-6) 0;
    }

    .footer-bottom .company-info p {
        font-size: var(--text-xs);
    }

    .footer-bottom .copyright {
        font-size: var(--text-xs);
    }
}


/* ===================================
   MODERN CONTACT PAGE RESPONSIVE
   =================================== */

/* Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .modern-contact-hero {
        padding: var(--space-24) 0 var(--space-24);
    }

    .modern-contact-title {
        font-size: 4.5rem;
    }

    .modern-contact-subtitle {
        font-size: var(--text-2xl);
        max-width: 800px;
    }

    .contact-cards-grid {
        gap: var(--space-10);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-option-card {
        padding: var(--space-12);
    }

    /* Make buttons same width for symmetry */
    .card-action {
        display: flex;
        gap: var(--space-3);
    }

    .demo-email-input {
        flex: 1;
    }

    .book-demo-btn {
        flex-shrink: 0;
        width: 150px;
    }

    .get-in-touch-btn {
        width: 150px;
        justify-content: center;
    }

    .info-grid {
        gap: var(--space-10);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Modal adjustments - even larger for extra large desktop */
    .contact-modal {
        max-width: 600px;
    }

    .modal-header {
        padding: var(--space-12) var(--space-10) var(--space-8);
    }

    .modal-header h2 {
        font-size: var(--text-4xl);
    }

    .modal-header p {
        font-size: var(--text-lg);
    }

    .contact-modal .contact-form {
        padding: var(--space-10);
    }

    .contact-modal .form-group {
        margin-bottom: var(--space-6);
    }

    .contact-modal .form-group label {
        font-size: var(--text-base);
    }

    .contact-modal .form-group input,
    .contact-modal .form-group textarea {
        padding: var(--space-4);
        font-size: var(--text-base);
    }

    .contact-modal .form-group textarea {
        min-height: 140px;
    }

    .modal-submit-btn {
        padding: var(--space-4) var(--space-8);
        font-size: var(--text-lg);
    }
}

/* Large Desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .modern-contact-hero {
        padding: var(--space-24) 0 var(--space-20);
    }

    .modern-contact-title {
        font-size: 4rem;
    }

    .modern-contact-subtitle {
        font-size: var(--text-xl);
    }

    .contact-cards-grid {
        gap: var(--space-8);
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-option-card {
        padding: var(--space-10);
    }

    /* Make buttons same width for symmetry */
    .card-action {
        display: flex;
        gap: var(--space-3);
    }

    .demo-email-input {
        flex: 1;
    }

    .book-demo-btn {
        flex-shrink: 0;
        width: 140px;
    }

    .get-in-touch-btn {
        width: 140px;
        justify-content: center;
    }

    /* Modal adjustments - larger for desktop */
    .contact-modal {
        max-width: 550px;
    }

    .modal-header {
        padding: var(--space-10) var(--space-8) var(--space-6);
    }

    .modal-header h2 {
        font-size: var(--text-3xl);
    }

    .modal-header p {
        font-size: var(--text-base);
    }

    .contact-modal .contact-form {
        padding: var(--space-8);
    }

    .contact-modal .form-group {
        margin-bottom: var(--space-5);
    }

    .contact-modal .form-group label {
        font-size: var(--text-sm);
    }

    .contact-modal .form-group input,
    .contact-modal .form-group textarea {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-base);
    }

    .contact-modal .form-group textarea {
        min-height: 120px;
    }

    .modal-submit-btn {
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
}

/* Laptop / Small Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .modern-contact-hero {
        padding: var(--space-20) 0 var(--space-16);
    }

    .modern-contact-title {
        font-size: 3.5rem;
    }

    .modern-contact-subtitle {
        font-size: var(--text-lg);
        max-width: 650px;
    }

    .contact-cards-grid {
        gap: var(--space-8);
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-option-card {
        padding: var(--space-8);
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

    .contact-option-card h3 {
        font-size: var(--text-xl);
    }

    .contact-option-card p {
        font-size: var(--text-sm);
    }

    /* Make buttons same width for symmetry */
    .card-action {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }

    .demo-email-input {
        width: 100%;
    }

    .book-demo-btn,
    .get-in-touch-btn {
        width: 100%;
        justify-content: center;
        padding: var(--space-3) var(--space-5);
    }

    .info-grid {
        gap: var(--space-6);
    }

    .info-block {
        padding: var(--space-5);
    }

    /* Modal adjustments - smaller for laptop */
    .contact-modal {
        max-width: 450px;
    }

    .modal-header {
        padding: var(--space-8) var(--space-6) var(--space-5);
    }

    .modal-header h2 {
        font-size: var(--text-2xl);
    }

    .modal-header p {
        font-size: var(--text-sm);
    }

    .contact-modal .contact-form {
        padding: var(--space-6);
    }

    .contact-modal .form-group {
        margin-bottom: var(--space-4);
    }

    .contact-modal .form-group label {
        font-size: 13px;
    }

    .contact-modal .form-group input,
    .contact-modal .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .contact-modal .form-group textarea {
        min-height: 100px;
    }

    .modal-submit-btn {
        padding: 11px 18px;
        font-size: var(--text-sm);
    }
}

/* Tablet Landscape (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .modern-contact-hero {
        padding: var(--space-16) 0 var(--space-12);
        min-height: auto;
    }

    .modern-contact-hero::before,
    .modern-contact-hero::after {
        width: 600px;
        height: 600px;
    }

    .contact-badge {
        font-size: 13px;
        padding: var(--space-2) var(--space-4);
        margin-bottom: var(--space-6);
    }

    .modern-contact-title {
        font-size: 3rem;
        margin-bottom: var(--space-5);
    }

    .modern-contact-subtitle {
        font-size: var(--text-lg);
        max-width: 600px;
        margin-bottom: var(--space-12);
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin-bottom: var(--space-12);
    }

    .contact-option-card {
        padding: var(--space-8);
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

    .card-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-option-card h3 {
        font-size: var(--text-xl);
    }

    .contact-option-card p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-6);
    }

    .card-action {
        flex-direction: row;
        gap: var(--space-3);
    }

    .demo-email-input {
        font-size: var(--text-sm);
    }

    .book-demo-btn,
    .get-in-touch-btn {
        font-size: var(--text-sm);
        padding: var(--space-3) var(--space-5);
        white-space: nowrap;
    }

    .company-info-section {
        margin-top: var(--space-16);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .info-block {
        padding: var(--space-5);
    }

    .info-icon-small {
        width: 36px;
        height: 36px;
    }

    .info-icon-small svg {
        width: 18px;
        height: 18px;
    }

    .info-block h4 {
        font-size: var(--text-sm);
    }

    .info-block p {
        font-size: 13px;
    }

    /* Modal adjustments */
    .contact-modal {
        max-width: 500px;
    }

    .modal-header {
        padding: var(--space-10) var(--space-8) var(--space-6);
    }

    .modal-header h2 {
        font-size: var(--text-3xl);
    }

    .contact-modal .contact-form {
        padding: var(--space-8);
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .modern-contact-hero {
        padding: var(--space-12) 0 var(--space-10);
        min-height: auto;
    }

    .modern-contact-hero::before,
    .modern-contact-hero::after {
        width: 400px;
        height: 400px;
    }

    .contact-badge {
        font-size: 12px;
        padding: var(--space-2) var(--space-3);
        margin-bottom: var(--space-5);
    }

    .modern-contact-title {
        font-size: 2.5rem;
        margin-bottom: var(--space-4);
    }

    .modern-contact-subtitle {
        font-size: var(--text-base);
        max-width: 500px;
        margin-bottom: var(--space-10);
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        margin-bottom: var(--space-10);
    }

    .contact-option-card {
        padding: var(--space-6);
    }

    .contact-option-card:hover {
        transform: translateY(-4px);
    }

    .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--space-4);
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-option-card h3 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-3);
    }

    .contact-option-card p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-5);
    }

    .card-action {
        flex-direction: column;
        gap: var(--space-3);
    }

    .demo-email-input {
        width: 100%;
        font-size: var(--text-sm);
    }

    .book-demo-btn,
    .get-in-touch-btn {
        width: 100%;
        justify-content: center;
        font-size: var(--text-sm);
        padding: var(--space-3) var(--space-5);
    }

    .company-info-section {
        margin-top: var(--space-12);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }

    .info-block {
        padding: var(--space-4);
    }

    .info-block:hover {
        transform: translateY(-2px);
    }

    .info-icon-small {
        width: 32px;
        height: 32px;
    }

    .info-icon-small svg {
        width: 16px;
        height: 16px;
    }

    .info-block h4 {
        font-size: 13px;
        margin-bottom: var(--space-1);
    }

    .info-block p {
        font-size: 12px;
    }

    /* Modal adjustments */
    .contact-modal {
        max-width: 100%;
        width: 100%;
    }

    .modal-close-btn {
        width: 36px;
        height: 36px;
        top: var(--space-5);
        right: var(--space-5);
    }

    .modal-close-btn svg {
        width: 20px;
        height: 20px;
    }

    .modal-header {
        padding: var(--space-10) var(--space-6) var(--space-6);
    }

    .modal-header h2 {
        font-size: var(--text-3xl);
    }

    .modal-header p {
        font-size: var(--text-sm);
    }

    .contact-modal .contact-form {
        padding: var(--space-6);
    }

    .contact-modal .form-group {
        margin-bottom: var(--space-5);
    }

    .contact-modal .form-group label {
        font-size: 13px;
    }

    .contact-modal .form-group input,
    .contact-modal .form-group textarea {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }

    .modal-submit-btn {
        font-size: var(--text-base);
        padding: var(--space-4) var(--space-5);
    }
}

/* Mobile (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .modern-contact-hero {
        padding: var(--space-10) 0 var(--space-8);
        min-height: auto;
    }

    .modern-contact-hero::before,
    .modern-contact-hero::after {
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }

    .contact-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: var(--space-4);
    }

    .modern-contact-title {
        font-size: 2rem;
        margin-bottom: var(--space-4);
        line-height: 1.2;
    }

    .modern-contact-subtitle {
        font-size: var(--text-sm);
        max-width: 100%;
        margin-bottom: var(--space-8);
        line-height: 1.5;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
    }

    .contact-option-card {
        padding: var(--space-5);
        border-radius: var(--radius-xl);
    }

    .contact-option-card:hover {
        transform: translateY(-2px);
    }

    .card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: var(--space-4);
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-option-card h3 {
        font-size: var(--text-base);
        margin-bottom: var(--space-3);
    }

    .contact-option-card p {
        font-size: 13px;
        margin-bottom: var(--space-4);
        line-height: 1.5;
    }

    .card-action {
        flex-direction: column;
        gap: var(--space-2);
    }

    .demo-email-input {
        width: 100%;
        font-size: 13px;
        padding: 10px 12px;
    }

    .book-demo-btn,
    .get-in-touch-btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 10px 16px;
    }

    .company-info-section {
        margin-top: var(--space-10);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .info-block {
        padding: var(--space-4);
        border-radius: var(--radius-lg);
    }

    .info-block:hover {
        transform: none;
    }

    .info-icon-small {
        width: 32px;
        height: 32px;
    }

    .info-icon-small svg {
        width: 16px;
        height: 16px;
    }

    .info-block h4 {
        font-size: 13px;
        margin-bottom: var(--space-1);
    }

    .info-block p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Modal adjustments */
    .contact-modal-overlay {
        backdrop-filter: blur(4px);
    }

    .contact-modal {
        max-width: 100%;
        width: 100%;
        right: -100%;
    }

    .contact-modal-overlay.active .contact-modal {
        right: 0;
    }

    .modal-close-btn {
        width: 32px;
        height: 32px;
        top: var(--space-4);
        right: var(--space-4);
    }

    .modal-close-btn svg {
        width: 18px;
        height: 18px;
    }

    .modal-header {
        padding: var(--space-8) var(--space-5) var(--space-5);
    }

    .modal-header h2 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-3);
    }

    .modal-header p {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-modal .contact-form {
        padding: var(--space-5);
    }

    .contact-modal .form-group {
        margin-bottom: var(--space-4);
    }

    .contact-modal .form-group label {
        font-size: 13px;
        margin-bottom: var(--space-1);
    }

    .contact-modal .form-group input,
    .contact-modal .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: var(--radius-md);
    }

    .contact-modal .form-group textarea {
        min-height: 100px;
    }

    .modal-submit-btn {
        font-size: var(--text-sm);
        padding: 12px 16px;
        margin-top: var(--space-3);
    }

    .modal-submit-btn svg {
        width: 16px;
        height: 16px;
    }

    .contact-modal .success-message {
        padding: var(--space-4);
        font-size: 13px;
        margin-top: var(--space-4);
    }

    .contact-modal .success-message svg {
        width: 20px;
        height: 20px;
    }
}

/* Very Small Mobile (< 321px) */
@media (max-width: 320px) {
    .modern-contact-hero {
        padding: var(--space-8) 0 var(--space-6);
    }

    .modern-contact-hero::before,
    .modern-contact-hero::after {
        display: none;
    }

    .contact-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: var(--space-3);
    }

    .modern-contact-title {
        font-size: 1.75rem;
        margin-bottom: var(--space-3);
    }

    .modern-contact-subtitle {
        font-size: 13px;
        margin-bottom: var(--space-6);
    }

    .contact-cards-grid {
        gap: var(--space-3);
        margin-bottom: var(--space-6);
    }

    .contact-option-card {
        padding: var(--space-4);
    }

    .card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: var(--space-3);
    }

    .card-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-option-card h3 {
        font-size: 15px;
        margin-bottom: var(--space-2);
    }

    .contact-option-card p {
        font-size: 12px;
        margin-bottom: var(--space-3);
    }

    .demo-email-input {
        font-size: 12px;
        padding: 8px 10px;
    }

    .book-demo-btn,
    .get-in-touch-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .company-info-section {
        margin-top: var(--space-8);
    }

    .info-grid {
        gap: var(--space-3);
    }

    .info-block {
        padding: var(--space-3);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon-small {
        width: 28px;
        height: 28px;
        margin-bottom: var(--space-2);
    }

    .info-icon-small svg {
        width: 14px;
        height: 14px;
    }

    .info-block h4 {
        font-size: 12px;
    }

    .info-block p {
        font-size: 11px;
    }

    /* Modal adjustments */
    .modal-close-btn {
        width: 28px;
        height: 28px;
        top: 12px;
        right: 12px;
    }

    .modal-close-btn svg {
        width: 16px;
        height: 16px;
    }

    .modal-header {
        padding: var(--space-6) var(--space-4) var(--space-4);
    }

    .modal-header h2 {
        font-size: var(--text-xl);
        margin-bottom: var(--space-2);
    }

    .modal-header p {
        font-size: 12px;
    }

    .contact-modal .contact-form {
        padding: var(--space-4);
    }

    .contact-modal .form-group {
        margin-bottom: var(--space-3);
    }

    .contact-modal .form-group label {
        font-size: 12px;
    }

    .contact-modal .form-group input,
    .contact-modal .form-group textarea {
        padding: 8px 10px;
        font-size: 12px;
    }

    .contact-modal .form-group textarea {
        min-height: 80px;
    }

    .modal-submit-btn {
        font-size: 13px;
        padding: 10px 14px;
    }

    .modal-submit-btn svg {
        width: 14px;
        height: 14px;
    }

    .contact-modal .success-message {
        padding: var(--space-3);
        font-size: 12px;
        gap: var(--space-2);
    }

    .contact-modal .success-message svg {
        width: 18px;
        height: 18px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .modern-contact-hero {
        padding: var(--space-8) 0 var(--space-6);
        min-height: auto;
    }

    .modern-contact-title {
        font-size: 2rem;
        margin-bottom: var(--space-3);
    }

    .modern-contact-subtitle {
        font-size: var(--text-sm);
        margin-bottom: var(--space-6);
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        margin-bottom: var(--space-6);
    }

    .company-info-section {
        margin-top: var(--space-8);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .contact-modal {
        max-width: 500px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-option-card,
    .info-block {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .modern-contact-hero::before,
    .modern-contact-hero::after {
        animation: none;
    }

    .contact-option-card,
    .info-block,
    .contact-modal {
        transition: none;
    }

    .modal-close-btn:hover {
        transform: none;
    }
}
