﻿:root {
      --primary-50: #eff6ff;
      --primary-100: #dbeafe;
      --primary-200: #bfdbfe;
      --primary-300: #93c5fd;
      --primary-400: #60a5fa;
      --primary-500: #3b82f6;
      --primary-600: #2563eb;
      --primary-700: #1d4ed8;
      --primary-800: #1e40af;
      --primary-900: #1e3a8a;
      --accent-500: #f97316;
      --accent-600: #ea580c;
      --secondary-50: #f8fafc;
      --secondary-100: #f1f5f9;
      --secondary-200: #e2e8f0;
      --secondary-300: #cbd5e1;
      --secondary-400: #94a3b8;
      --secondary-500: #64748b;
      --secondary-600: #475569;
      --secondary-700: #334155;
      --secondary-800: #1e293b;
      --secondary-900: #0f172a;
      --radius-sm: 0.25rem;
      --radius-md: 0.5rem;
      --radius-lg: 0.75rem;
      --radius-xl: 1rem;
      --radius-2xl: 1.5rem;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --transition: all 0.3s ease;
      --transition-fast: all 0.2s ease;
      --transition-slow: all 0.4s ease;
      --white: #ffffff;
    }
    
    /* Floating Actions Container */
    .floating-actions {
      position: fixed;
      right: 2rem;
      bottom: 2rem;
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    
    /* Floating Inquiry Button */
    .floating-inquiry {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      animation: pulse-ring 2s infinite;
      cursor: pointer;
      border: none;
    }
    
    .floating-inquiry:hover {
      transform: scale(1.1);
      box-shadow: var(--shadow-xl);
    }
    
    .floating-inquiry svg {
      width: 24px;
      height: 24px;
    }
    
    @keyframes pulse-ring {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
      }
    }
    
    /* Back to Top Button */
    .back-to-top {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      cursor: pointer;
      border: none;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .back-to-top:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    }
    
    .back-to-top svg {
      width: 24px;
      height: 24px;
    }
    
    .product-detail-hero {
      padding: 8rem 0 6rem;
      background: #1f48be;
      position: relative;
      overflow: hidden;
    }
    
    .product-detail-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .product-detail-hero::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      transform: rotate(-15deg);
    }
    
    .hero-content-wrapper {
      position: relative;
      z-index: 2;
    }
    
    .product-gallery {
      position: relative;
      z-index: 1;
    }
    
    .product-main-image {
      width: 100%;
      aspect-ratio: 4/3;
      background: white;
      border-radius: var(--radius-xl);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      border: 1px solid var(--secondary-200);
    }
    
    .product-main-image:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }
    
    .product-main-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: var(--transition);
    }
    
    .product-main-image:hover img {
      transform: scale(1.02);
    }
    
    .product-thumbnails {
      display: flex;
      gap: 1rem;
    }
    
    .product-thumbnail {
      width: 90px;
      height: 70px;
      border-radius: var(--radius-md);
      background: white;
      border: 3px solid transparent;
      cursor: pointer;
      transition: var(--transition);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--secondary-200);
    }
    
    .product-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .product-thumbnail:hover,
    .product-thumbnail.active {
      border-color: var(--primary-500);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
      background: white;
    }
    
    .product-info {
      padding-left: 3rem;
      position: relative;
      z-index: 1;
    }
    
    .product-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
      margin-top: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .product-breadcrumb a {
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .product-breadcrumb a:hover {
      color: var(--primary-100);
      text-decoration: underline;
    }
    
    .product-breadcrumb span:last-child {
      color: white;
      font-weight: 500;
    }
    
    .product-category-badge {
      display: inline-block;
      padding: 0.375rem 1rem;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border-radius: 2rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }
    
    .product-category-badge:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-1px);
    }
    
    .product-detail-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }
    
    .product-detail-desc {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
      margin-bottom: 2rem;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }
    
    .product-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }
    
    .highlight-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      color: white;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    
    .highlight-tag:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.4);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    
    .highlight-tag svg {
      width: 1.125rem;
      height: 1.125rem;
      color: var(--accent-300);
    }
    
    .product-actions {
      display: flex;
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    
    .btn-lg {
      padding: 1rem 2rem;
      font-size: 1.125rem;
      font-weight: 600;
      border-radius: var(--radius-md);
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    
    
    .spec-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      border-bottom: 2px solid var(--secondary-100);
      padding-bottom: 0;
      background: white;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      padding: 0.5rem 0.5rem 0;
      box-shadow: var(--shadow-sm);
    }
    
    .spec-tab {
      padding: 1rem 1.75rem;
      background: none;
      border: none;
      font-size: 1rem;
      font-weight: 500;
      color: var(--secondary-500);
      cursor: pointer;
      position: relative;
      transition: var(--transition);
      border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    
    .spec-tab:hover {
      color: var(--primary-500);
      background: var(--secondary-50);
    }
    
    .spec-tab.active {
      color: var(--primary-700);
      background: white;
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .spec-tab.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--primary-500);
    }
    
    .spec-content {
      display: none;
    }
    
    .spec-content.active {
      display: block;
    }
    
    .spec-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--secondary-100);
      box-shadow: var(--shadow-sm);
    }
    
    .spec-table th {
      background: var(--secondary-50);
      padding: 1.25rem 1.75rem;
      text-align: left;
      font-weight: 600;
      color: var(--secondary-700);
      font-size: 0.875rem;
      border-bottom: 1px solid var(--secondary-100);
    }
    
    .spec-table td {
      padding: 1.25rem 1.75rem;
      border-bottom: 1px solid var(--secondary-100);
      font-size: 0.875rem;
      transition: var(--transition);
    }
    
    .spec-table tr:hover td {
      background: var(--secondary-50);
    }
    
    .spec-table tr:last-child td {
      border-bottom: none;
    }
    
    .spec-table .spec-param {
      color: var(--secondary-600);
      font-weight: 500;
      width: 40%;
    }
    
    .spec-table .spec-value {
      color: var(--secondary-900);
      font-weight: 400;
    }
    
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    
    .feature-card {
      background: white;
      border: 1px solid var(--secondary-100);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      text-align: center;
    }
    
    .feature-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      border-color: var(--primary-300);
    }
    
    .feature-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      transition: var(--transition);
    }
    
    .feature-card:hover .feature-icon {
      background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-300) 100%);
      transform: scale(1.1);
    }
    
    .feature-icon svg {
      width: 32px;
      height: 32px;
      color: var(--primary-600);
    }
    
    .feature-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--secondary-800);
      margin-bottom: 0.75rem;
    }
    
    .feature-desc {
      font-size: 0.875rem;
      color: var(--secondary-600);
      line-height: 1.6;
    }
    
    @media (max-width: 1200px) {
      .product-info {
        padding-left: 2rem;
      }
      
      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .related-products .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 992px) {
      .product-detail-title {
        font-size: 1.75rem;
      }
      
      .contact-layout-new {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .product-detail-hero {
        padding: 7rem 0 3rem;
      }
      
      .product-info {
        padding-left: 0;
        margin-top: 2rem;
      }
      
      .product-breadcrumb {
        flex-wrap: wrap;
        gap: 0.5rem;
      }
      
      .feature-grid {
        grid-template-columns: 1fr;
      }
      
      .related-products .grid {
        grid-template-columns: 1fr;
      }
      
      .product-detail-title {
        font-size: 1.5rem;
      }
      
      .product-actions {
        flex-direction: column;
      }
      
      .btn-lg {
        width: 100%;
        justify-content: center;
      }
      
      .product-thumbnails {
        justify-content: center;
      }
      
      .spec-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
      }
      
      .download-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      
      .download-item .btn {
        align-self: stretch;
      }
    }
    
    @media (max-width: 480px) {
      .product-detail-hero {
        padding: 6rem 0 2rem;
      }
      
      .product-detail-title {
        font-size: 1.25rem;
      }
      
      .product-category-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.75rem;
      }
      
      .feature-card {
        padding: 1.5rem;
      }
      
      .spec-table th,
      .spec-table td {
        padding: 1rem;
        font-size: 0.75rem;
      }
      
      .contact-cards-new {
        grid-template-columns: 1fr;
      }
    }
    
    /* Scroll Animation */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    .animate-on-scroll.delay-1 {
      transition-delay: 0.2s;
    }
    
    .animate-on-scroll.delay-2 {
      transition-delay: 0.4s;
    }
    
    .animate-on-scroll.delay-3 {
      transition-delay: 0.6s;
    }
    
    .animate-on-scroll.delay-4 {
      transition-delay: 0.8s;
    }
    
    .download-section {
      background: var(--secondary-50);
      border-radius: var(--radius-xl);
      padding: 2.5rem;
      box-shadow: var(--shadow-sm);
    }
    
    .download-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem;
      background: white;
      border-radius: var(--radius-lg);
      margin-bottom: 1rem;
      border: 1px solid var(--secondary-100);
      transition: var(--transition);
    }
    
    .download-item:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
      border-color: var(--primary-300);
    }
    
    .download-item:last-child {
      margin-bottom: 0;
    }
    
    .download-info {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    
    .download-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .download-item:hover .download-icon {
      background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-300) 100%);
      transform: scale(1.1);
    }
    
    .download-icon svg {
      width: 28px;
      height: 28px;
      color: var(--primary-600);
    }
    
    .inquiry-sidebar {
      position: sticky;
      top: 100px;
    }
    
    .inquiry-form-card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 2rem;
      border: 1px solid var(--secondary-100);
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }
    
    .inquiry-form-card:hover {
      box-shadow: var(--shadow-lg);
    }
    
    .inquiry-form-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: var(--secondary-900);
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 1.25rem;
    }
    
    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--secondary-700);
    }
    
    .form-input,
    .form-textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 1px solid var(--secondary-200);
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      transition: var(--transition);
      background: white;
    }
    
    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--primary-400);
      box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    }
    
    .form-textarea {
      resize: vertical;
      min-height: 100px;
    }
    
    .related-products {
      margin-top: 4rem;
    }
    
    .related-products .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .related-products .product-card {
      background: white;
      border: 1px solid var(--secondary-100);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    
    .related-products .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: var(--primary-300);
    }
    
    .related-products .product-image {
      position: relative;
      height: 220px;
      overflow: hidden;
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
    
    .related-products .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-slow);
    }
    
    .related-products .product-card:hover .product-image img {
      transform: scale(1.08);
    }
    
    .related-products .product-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.375rem 0.75rem;
      background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
      color: white;
      border-radius: var(--radius-md);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: var(--shadow-md);
      z-index: 10;
    }
    
    .related-products .product-content {
      padding: 1.75rem;
    }
    
    .related-products .product-category {
      font-size: 0.75rem;
      color: var(--secondary-500);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
      font-weight: 500;
    }
    
    .related-products .product-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--secondary-900);
      margin-bottom: 0.75rem;
      line-height: 1.3;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }
    
    .related-products .product-desc {
      font-size: 0.875rem;
      color: var(--secondary-600);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    
    .related-products .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .related-products .product-link {
      color: var(--primary-600);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-md);
      background: var(--primary-50);
    }
    
    .related-products .product-link:hover {
      color: var(--primary-700);
      background: var(--primary-100);
      transform: translateX(4px);
    }
    
    .related-products .product-link:hover svg {
      transform: translateX(4px);
    }
    
    /* Contact Section Styles */
    .contact-main-section {
      padding: 5rem 0;
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    }
    
    .contact-layout-new {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: start;
    }
    
    .contact-intro-new {
      margin-bottom: 2.5rem;
    }
    
    .contact-intro-new h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--secondary-900);
      margin-bottom: 1rem;
    }
    
    .contact-intro-new p {
      color: var(--secondary-600);
      line-height: 1.7;
      font-size: 1rem;
    }
    
    .contact-cards-new {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .contact-card-new {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: white;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }
    
    .contact-card-new:hover {
      border-color: var(--primary-500);
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
      transform: translateX(8px);
    }
    
    .card-icon-box {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    
    .contact-card-new:hover .card-icon-box {
      transform: scale(1.1);
    }
    
    .card-icon-box svg {
      color: white;
    }
    
    .card-text {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .card-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--secondary-500);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .card-value {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--secondary-800);
    }
    
    .form-card-new {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
      border: 1px solid #e2e8f0;
    }
    
    .form-header-new {
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #e2e8f0;
    }
    
    .form-header-new h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--secondary-900);
      margin-bottom: 0.5rem;
    }
    
    .form-header-new p {
      color: var(--secondary-500);
      font-size: 0.9rem;
    }
    
    .contact-form-new {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    
    .form-row-new {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    
    .form-group-new {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .form-group-new label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--secondary-700);
    }
    
    .form-group-new input,
    .form-group-new textarea {
      padding: 0.875rem 1rem;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      background: #f8fafc;
    }
    
    .form-group-new input:focus,
    .form-group-new textarea:focus {
      outline: none;
      border-color: var(--primary-500);
      background: white;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .form-group-new textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    .checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
      font-size: 0.875rem;
      color: var(--secondary-600);
    }
    
    .checkbox-label input {
      margin-top: 0.25rem;
      width: 18px;
      height: 18px;
      accent-color: var(--primary-500);
    }
    
    .checkbox-label a {
      color: var(--primary-600);
      text-decoration: none;
    }
    
    .checkbox-label a:hover {
      text-decoration: underline;
    }
    
    .submit-btn-new {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
      text-decoration: none;
    }
    
    .submit-btn-new:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    
    .submit-btn-new svg {
      transition: transform 0.3s ease;
    }
    
    .submit-btn-new:hover svg {
      transform: translateX(4px);
    }
    
    @media (max-width: 1024px) {
      .contact-layout-new {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }
    
    @media (max-width: 640px) {
      .contact-main-section {
        padding: 3rem 0;
      }
      
      .form-row-new {
        grid-template-columns: 1fr;
      }
      
      .form-card-new {
        padding: 1.5rem;
      }
      
      .contact-intro-new h2 {
        font-size: 1.5rem;
      }
    }