      :root {
        --primary: #0066ff;
        --primary-dark: #0044cc;
        --secondary: #00f2ff;
        --dark: #0f172a;
        --light: #f8fafc;
        --gray: #64748b;
        --accent: #8b5cf6;
        --tech-gradient: linear-gradient(
          135deg,
          var(--primary),
          var(--secondary)
        );
        --success: #10b981;
        --warning: #f59e0b;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        background: linear-gradient(135deg, #0f172a, #1e293b);
        color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
        min-height: 100vh;
      }

      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle at 10% 20%,
            rgba(37, 99, 235, 0.1) 0%,
            transparent 20%
          ),
          radial-gradient(
            circle at 90% 80%,
            rgba(6, 182, 212, 0.1) 0%,
            transparent 20%
          );
        z-index: -1;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section-padding {
        padding: 65px 0;
      }

      .section-title {
        font-family: "Orbitron", sans-serif;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--tech-gradient);
        border-radius: 2px;
      }

      /* ===== Header Styles ===== */
      header {
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(100, 116, 139, 0.2);
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-family: "Orbitron", sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--light);
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: var(--secondary);
      }

      .logo .tech {
        color: var(--secondary);
      }

      .logo i {
        margin-right: 10px;
        color: var(--secondary);
        font-size: 1.5rem;
      }

      .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
      }

      .nav-links a {
        color: var(--light);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-links a:not(.cta-buttons):hover {
        color: var(--secondary);
      }

      .nav-links a:not(.cta-buttons)::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: width 0.3s ease;
      }

      .nav-links a:not(.cta-buttons):hover::after {
        width: 100%;
      }

      .nav-links a:hover,
      .nav-links a.active {
        color: var(--secondary);
      }

      .cta-buttons {
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        color: var(--dark);
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .cta-buttons:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
      }

      .mobile-menu-btn {
        display: none;
        color: var(--light);
        font-size: 1.5rem;
        cursor: pointer;
      }

      .nav-links a.active::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--secondary);
      }

      /* ===== Dropdown Styles - Handled by allDropdown.css ===== */
      /* All dropdown styles are now in allDropdown.css for consistency across all pages */

      /* Contact Hero Section */
      .contact-hero {
        padding: 135px 0 10px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .contact-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at center,
          rgba(6, 182, 212, 0.1) 0%,
          transparent 70%
        );
        z-index: -1;
      }

      .contact-hero-title {
        font-family: "Orbitron", sans-serif;
        font-size: 3.8rem;
        margin-bottom: 20px;
        background: var(--tech-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
      }

      .hero-subtitle {
        font-size: 1.5rem;
        color: var(--secondary);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-description {
        font-size: 1.1rem;
        color: #cbd5e1;
        margin-bottom: 40px;
        line-height: 1.8;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Contact Section - Improved Layout */
      .contact-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
        width: 100%;
        max-width: 100%;
      }

      .contact-info,
      .contact-form {
        width: 100%;
        max-width: 100%;
      }

      .contact-card {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 15px;
        padding: 30px;
        border: 1px solid rgba(100, 116, 139, 0.2);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        margin-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
      }

      .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(37, 99, 235, 0.4);
      }

      .contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--tech-gradient);
      }

      .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: var(--secondary);
        font-family: "Orbitron", sans-serif;
        text-align: center;
        font-weight: 600;
        line-height: 1.4;
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        gap: 15px;
      }

      .info-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
      }

      .info-item:hover .info-icon {
        background: var(--tech-gradient);
        color: white;
        transform: scale(1.1);
      }

      .info-content {
        flex: 1;
      }

      .info-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: var(--light);
        font-weight: 600;
      }

      .info-content p {
        color: #94a3b8;
        line-height: 1.6;
      }

      .info-content a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .info-content a:hover {
        color: var(--secondary);
      }

      /* Contact Links Grid - Fixed */
      .contact-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
      }

      .contact-link-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
        background: rgba(15, 23, 42, 0.4);
        transition: all 0.3s ease;
        border: 1px solid rgba(100, 116, 139, 0.1);
        text-decoration: none;
        color: inherit;
        cursor: pointer;
      }

      .contact-link-item:hover {
        background: rgba(37, 99, 235, 0.1);
        border-color: rgba(37, 99, 235, 0.3);
        transform: translateY(-3px);
        text-decoration: none;
      }

      .contact-link-icon {
        background: #f5f6fa;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        color: var(--primary);
        font-size: 1.4rem;
        transition: all 0.3s ease;
      }

      .contact-link-item:hover .contact-link-icon {
        background: var(--tech-gradient);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
      }

      .contact-link-item span {
        font-size: 0.9rem;
        color: #94a3b8;
        margin-bottom: 5px;
        font-weight: 500;
      }

      .contact-link-value {
        color: var(--light);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
      }

      .contact-link-item:hover .contact-link-value {
        color: var(--secondary);
      }

      /* FAQ Section */
      .faq-section {
        margin: 50px 0;
      }

      .faq-full-section {
        width: 100%;
        max-width: 100%;
        margin-top: 50px;
      }

      .faq-full-section .contact-card {
        max-width: 100%;
      }

      .faq-item {
        margin-bottom: 15px;
        border: 1px solid rgba(100, 116, 139, 0.2);
        border-radius: 8px;
        overflow: hidden;
        background: rgba(15, 23, 42, 0.4);
      }

      .faq-question {
        padding: 20px;
        background: rgba(30, 41, 59, 0.7);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s;
      }

      .faq-question:hover {
        background: rgba(37, 99, 235, 0.1);
      }

      .faq-question h4 {
        margin: 0;
        font-size: 1.1rem;
        color: var(--light);
      }

      .faq-icon {
        transition: transform 0.3s;
        color: var(--secondary);
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }

      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 500px;
      }

      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }

      /* Form Styles */
      .form-group {
        margin-bottom: 20px;
      }

      .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--light);
      }

      .required-asterisk {
        color: #ef4444;
        font-weight: 600;
        margin-left: 3px;
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid rgba(100, 116, 139, 0.3);
        border-radius: 5px;
        font-size: 1rem;
        transition: border 0.3s ease, box-shadow 0.3s ease;
        font-family: inherit;
        background: rgba(15, 23, 42, 0.5);
        color: var(--light);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }

      /* Autofill styles - override browser defaults */
      .form-control:-webkit-autofill,
      .form-control:-webkit-autofill:hover,
      .form-control:-webkit-autofill:focus,
      .form-control:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px rgba(15, 23, 42, 0.5) inset !important;
        -webkit-text-fill-color: var(--light) !important;
        background-color: rgba(15, 23, 42, 0.5) !important;
        background-clip: content-box !important;
        border: 1px solid rgba(100, 116, 139, 0.3) !important;
        transition: background-color 5000s ease-in-out 0s;
      }

      .form-control:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 30px rgba(15, 23, 42, 0.5) inset,
          0 0 0 2px rgba(37, 99, 235, 0.2) !important;
        border-color: var(--primary) !important;
      }

      .form-control:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
      }

      .form-control.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
      }

      .form-control.error:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px rgba(15, 23, 42, 0.5) inset,
          0 0 0 2px rgba(239, 68, 68, 0.2) !important;
        border-color: #ef4444 !important;
      }

      .form-control.valid {
        border-color: var(--success);
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
      }

      .form-control.valid:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px rgba(15, 23, 42, 0.5) inset,
          0 0 0 2px rgba(16, 185, 129, 0.2) !important;
        border-color: var(--success) !important;
      }

      .error {
        display: block;
        color: #ef4444;
        font-size: 0.875rem;
        margin-top: 5px;
        min-height: 20px;
        line-height: 1.4;
      }

      .error:empty {
        display: none;
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      .submit-btn {
        background: var(--tech-gradient);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        font-weight: 500;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
      }

      .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
      }

      /* Map Section */
      .map-section {
        margin-top: 30px;
      }

      .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(100, 116, 139, 0.2);
      }

      .map-container iframe {
        width: 100%;
        height: 450px;
        border: none;
      }

      /* Footer */
   
      /* ===== Mobile Responsive Styles ===== */
      @media (max-width: 1200px) {
        .section-padding {
          padding: 80px 0;
        }

        /* Footer adjustments for medium screens */
        .footer-container {
          grid-template-columns: repeat(4, minmax(180px, 1fr));
          gap: 25px;
        }
      }

      /* General tablet adjustments (including iPad Pro) */
      @media (min-width: 768px) and (max-width: 1366px) {
        .section-padding {
          padding: 60px 0;
        }
      }

      /* iPad Pro specific adjustments (1024 x 1366) */
      @media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
        /* Reduce hero padding to balance with navbar */
        .contact-hero {
          padding: 120px 0 40px;
        }

        .contact-hero-title {
          font-size: 3rem;
          margin-bottom: 15px;
        }

        .hero-subtitle {
          font-size: 1.3rem;
          margin-bottom: 20px;
        }

        .hero-description {
          font-size: 1rem;
          margin-bottom: 30px;
        }

        /* Navbar adjustments for iPad Pro - make it more compact */
        header {
          padding: 10px 0 !important;
        }

        nav {
          padding: 10px 0 !important;
        }

        .logo img {
          height: 35px;
        }

        .nav-links {
          gap: 18px;
        }

        .nav-links a {
          font-size: 0.9rem;
          padding: 8px 12px;
        }

        .cta-buttons {
          font-size: 0.85rem;
          padding: 8px 16px;
        }

        /* Contact Section - Stack vertically for iPad Pro */
        .contact-section {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .contact-info {
          width: 100%;
          max-width: 100%;
        }

        .contact-form {
          width: 100%;
          max-width: 100%;
        }

        .contact-card {
          width: 100%;
          margin-bottom: 25px;
        }

        /* FAQ Section - Full width (already full width in single column) */

        /* Footer adjustments for iPad Pro portrait */
        .footer-container {
          grid-template-columns: repeat(3, 1fr);
          gap: 25px;
        }
      }

      /* iPad Pro landscape (1366 x 1024) */
      @media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
        .contact-hero {
          padding: 100px 0 30px;
        }

        .contact-hero-title {
          font-size: 2.8rem;
          margin-bottom: 15px;
        }

        .hero-subtitle {
          font-size: 1.2rem;
          margin-bottom: 15px;
        }

        .hero-description {
          font-size: 0.95rem;
          margin-bottom: 25px;
        }

        /* Navbar adjustments for landscape */
        header {
          padding: 8px 0 !important;
        }

        nav {
          padding: 8px 0 !important;
        }

        .logo img {
          height: 32px;
        }

        .nav-links {
          gap: 15px;
        }

        .nav-links a {
          font-size: 0.85rem;
          padding: 6px 10px;
        }

        .cta-buttons {
          font-size: 0.8rem;
          padding: 6px 14px;
        }

        /* Contact Section - Two columns with FAQ full width */
        .contact-section {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 25px;
          align-items: start;
        }

        .contact-info {
          display: contents;
        }

        .contact-form {
          grid-column: 2;
          grid-row: 1 / 3;
        }

        .contact-card {
          width: 100%;
          margin-bottom: 0;
        }

        /* First card (Our Location) - first column */
        .contact-info .contact-card:first-of-type {
          grid-column: 1;
          grid-row: 1;
        }

        /* FAQ Section - Full width spanning both columns */
        .contact-info .contact-card:nth-of-type(2) {
          grid-column: 1 / -1;
          grid-row: 2;
          width: 100%;
        }

        /* Business Hours card - first column, third row */
        .contact-info .contact-card:last-of-type {
          grid-column: 1;
          grid-row: 2;
        }

        /* Footer adjustments for iPad Pro landscape */
        .footer-container {
          grid-template-columns: repeat(4, 1fr);
          gap: 20px;
        }
      }

      @media (max-width: 992px) {
        .contact-hero-title {
          font-size: 3.2rem;
        }

        .contact-section {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .contact-card {
          margin-bottom: 25px;
        }

        .contact-links {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
        }

        .footer-container {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      @media (max-width: 768px) {
        .dropdown-scroll {
          max-height: 250px;
        }

        .logo {
          font-size: 1.5rem;
        }

        .mobile-menu-btn {
          display: block;
          position: fixed;
          top: 25px;
          right: 25px;
          z-index: 1000;
          background: none;
          border: none;
          color: var(--light);
          font-size: 1.8rem;
        }

        /* Hero section */
        .contact-hero {
          padding: 120px 0 50px;
        }

        .contact-hero-title {
          font-size: 2.8rem;
          line-height: 1.2;
        }

        .hero-subtitle {
          font-size: 1.3rem;
        }

        /* Contact section improvements */
        .contact-section {
          grid-template-columns: 1fr;
          gap: 25px;
        }

        .contact-card {
          padding: 25px;
          margin-bottom: 20px;
        }

        .contact-card h3 {
          font-size: 1.3rem;
          margin-bottom: 20px;
        }

        .contact-links {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
          margin-top: 25px;
        }

        .contact-link-item {
          padding: 12px;
        }

        .contact-link-icon {
          width: 50px;
          height: 50px;
          font-size: 1.2rem;
          margin-bottom: 10px;
        }

        .info-item {
          margin-bottom: 20px;
        }

        .info-icon {
          width: 45px;
          height: 45px;
          font-size: 1.1rem;
        }

        /* Footer */
        .footer-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 576px) {
        /* Header */
        nav {
          padding: 15px 0;
        }

        .mobile-menu-btn {
          top: 20px;
          right: 20px;
          font-size: 1.6rem;
        }

        /* Hero section */
        .contact-hero {
          padding: 120px 0 40px;
        }

        .contact-hero-title {
          font-size: 2.2rem;
          line-height: 1.3;
        }

        .hero-subtitle {
          font-size: 1.1rem;
        }

        .hero-description {
          font-size: 1rem;
        }

        /* Section titles */
        .section-title {
          font-size: 2rem;
          margin-bottom: 40px;
        }

        /* Contact section - Mobile specific */
        .contact-section {
          gap: 20px;
        }

        .contact-card {
          padding: 20px;
          margin-bottom: 15px;
        }

        .contact-card h3 {
          font-size: 1.2rem;
          margin-bottom: 18px;
        }

        .contact-links {
          grid-template-columns: 1fr;
          gap: 12px;
          margin-top: 20px;
        }

        .contact-link-item {
          padding: 15px 10px;
          border-radius: 8px;
        }

        .contact-link-icon {
          width: 45px;
          height: 45px;
          font-size: 1.1rem;
          margin-bottom: 8px;
        }

        .contact-link-item span {
          font-size: 0.85rem;
          margin-bottom: 4px;
        }

        .contact-link-item a {
          font-size: 0.85rem;
        }

        .info-item {
          margin-bottom: 18px;
          gap: 12px;
        }

        .info-icon {
          width: 40px;
          height: 40px;
          font-size: 1rem;
        }

        .info-content h4 {
          font-size: 1rem;
          margin-bottom: 6px;
        }

        .info-content p {
          font-size: 0.9rem;
        }

        /* Footer */
        .footer-container {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 400px) {
        .contact-hero-title {
          font-size: 1.9rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .contact-card {
          padding: 15px;
          margin-bottom: 12px;
        }

        .contact-card h3 {
          font-size: 1.1rem;
          margin-bottom: 15px;
        }

        .contact-links {
          gap: 10px;
          margin-top: 15px;
        }

        .contact-link-item {
          padding: 12px 8px;
        }

        .contact-link-icon {
          width: 40px;
          height: 40px;
          font-size: 1rem;
          margin-bottom: 6px;
        }

        .info-item {
          flex-direction: row;
          align-items: flex-start;
          gap: 12px;
          margin-bottom: 15px;
          text-align: left;
        }

        .info-content {
          text-align: left;
          flex: 1;
        }

        .info-content h4 {
          font-size: 0.95rem;
        }

        .info-content p {
          font-size: 0.85rem;
        }
      }

      /* Fix layout stability on page load/refresh */
      body {
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      body.loaded {
        opacity: 1;
      }

      /* Prevent layout shift during load */
      .contact-section,
      .contact-card,
      .footer-container {
        min-height: fit-content;
        will-change: auto;
      }

      /* Optimize for touch devices */
      @media (hover: none) and (pointer: coarse) {
        .contact-card:hover {
          transform: none;
        }

        .info-icon {
          pointer-events: none;
        }
      }
