 :root {
   --bg-base: #07090f;
   --bg-subtle: #0f1423;
   --bg-surface: #141a2e;
   --text-main: #ffffff;
   --text-muted: #94a3b8;
   --border-light: rgba(255, 255, 255, 0.4);
   --border-focus: rgba(251, 191, 36, 0.8);
   --brand-gold: #fbbf24;
   --brand-gold-light: #fde047;
   --brand-gold-dark: #d97706;
   --gold-gradient: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold-dark));
   --glass-bg: rgba(7, 9, 14, 0.5);
   --danger: #ef4444;
   --font-main: 'Plus Jakarta Sans', sans-serif;
   --max-w: 1320px;
   --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
   --shadow-gold: 0 10px 40px -10px rgba(251, 191, 36, 0.3);
   --radius-md: 12px;
   --radius-lg: 20px;
   --transition: all 0.2s ease-in-out;
   --header-bg: rgba(7, 9, 15, 0.85);
 }

 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 html {
   scroll-behavior: smooth;
   font-size: 90%;
 }

 body {
   font-family: var(--font-main);
   background: var(--bg-base);
   color: var(--text-main);
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 a {
   text-decoration: none;
   color: inherit;
 }

 /* Header Styles from Pricing Page */
 .header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   background: var(--header-bg);
   backdrop-filter: blur(20px);
   border-bottom: 1px solid var(--border-light);
 }

 .container {
   width: 100%;
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 24px;
   position: relative;
   z-index: 10;
 }

 .nav-container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 80px;
   /* max-width: var(--max-w); */
 }

 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 900;
   font-size: 24px;
   color: var(--text-main);
   letter-spacing: -0.05em;
 }

 .brand-mark {
   background: var(--brand-gold);
   width: 34px;
   height: 34px;
   border-radius: 9px;
   display: grid;
   place-items: center;
   border: 1px solid var(--border-light);
   color: #000;
 }

 .nav-links {
   display: flex;
   gap: 28px;
   font-weight: 600;
   font-size: 14px;
   color: var(--text-muted);
   align-items: center;
 }

 .nav-links a:hover {
   color: var(--brand-gold);
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 14px 28px;
   border-radius: 999px;
   font-weight: 800;
   font-size: 16px;
   transition: var(--transition);
   cursor: pointer;
   border: 1px solid var(--border-light);
 }

 .btn-gold {
   background: var(--gold-gradient);
   color: #000 !important;
   box-shadow: var(--shadow-gold);
 }

 .btn-gold:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px -5px rgba(251, 191, 36, 0.4);
 }

 /* Ambient Backgrounds */
 .ambient-bloom {
   position: absolute;
   border-radius: 50%;
   filter: blur(120px);
   pointer-events: none;
   z-index: 0;
   opacity: 0.35;
 }

 .bloom-gold {
   background: rgba(251, 191, 36, 0.25);
 }

 .bloom-violet {
   background: rgba(124, 58, 237, 0.15);
 }

 /* Main Contact Content */
 .main-contents {
   flex: 1;
   padding: 140px 0 80px;
   position: relative;
 }

 .text-success-msg {
   text-align: center;
   color: #008000;
   margin-bottom: 15px;
 }

 .page-title {
   text-align: center;
   font-size: clamp(2.5rem, 5vw, 3.5rem);
   font-weight: 900;
   letter-spacing: -0.04em;
   margin-bottom: 40px;
   color: var(--text-main);
 }

 .contact-card {
   max-width: 800px;
   margin: 0 auto;
   background: var(--bg-surface);
   border: 1px solid var(--border-light);
   border-radius: var(--radius-lg);
   padding: 40px;
   box-shadow: var(--shadow-xl);
   position: relative;
   overflow: hidden;
 }

 /* Sub header bar */
 .contact-sub-header {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.1);
   padding: 14px 20px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   gap: 12px;
   color: var(--brand-gold);
   font-weight: 800;
   font-size: 15px;
   margin-bottom: 32px;
 }

 /* Company Address Info */
 .company-info {
   margin-bottom: 40px;
   padding-bottom: 30px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .company-info h2 {
   font-size: 1.8rem;
   font-weight: 800;
   margin-bottom: 16px;
   color: var(--text-main);
 }

 .company-info p {
   color: var(--text-muted);
   font-size: 1.05rem;
   line-height: 1.8;
   font-weight: 500;
 }

 /* Form Styles */
 .form-group {
   margin-bottom: 24px;
 }

 .form-label {
   display: block;
   font-weight: 700;
   margin-bottom: 10px;
   color: var(--text-main);
   font-size: 15px;
 }

 .form-label span.req {
   color: var(--text-main);
   /* Keeping black asterisk feel from screenshot, but making it visible */
 }

 .form-control {
   width: 100%;
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid var(--border-light);
   color: var(--text-main);
   border-radius: 8px;
   padding: 14px 16px;
   font-family: var(--font-main);
   font-size: 15px;
   transition: var(--transition);
 }

 .form-control::placeholder {
   color: rgba(255, 255, 255, 0.3);
 }

 .form-control:focus {
   outline: none;
   border-color: var(--border-focus);
   background: rgba(255, 255, 255, 0.06);
   box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
 }

 textarea.form-control {
   resize: vertical;
   min-height: 140px;
 }

 /* Dark theme reCAPTCHA mock */
 .recaptcha-wrapper {
   background: #222222;
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 4px;
   padding: 12px 16px;
   display: inline-flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;

   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .recaptcha-checkbox {
   display: flex;
   align-items: center;
   gap: 12px;
   cursor: pointer;
 }

 .recaptcha-checkbox input[type="checkbox"] {
   width: 28px;
   height: 28px;
   cursor: pointer;
   accent-color: var(--brand-gold);
 }

 .recaptcha-checkbox label {
   color: #ffffff;
   font-size: 14px;
   font-weight: 500;
   cursor: pointer;
 }

 .recaptcha-logo-area {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
 }

 .recaptcha-logo-area img {
   width: 28px;
   opacity: 0.9;
 }

 .recaptcha-logo-area span {
   font-size: 10px;
   color: #999;
   margin-top: 4px;
 }

 .submit-btn-wrapper {
   margin-top: 32px;
 }

 /* Footer styling specific to the screenshot layout but matching theme */
 .footer {
   padding: 30px 0;
   background: var(--bg-base);
   border-top: 1px solid var(--border-light);
 }

 .footer-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
 }

 .footer-nav {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }

 .footer-nav-item {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--text-muted);
   font-size: 13px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   cursor: pointer;
   transition: color 0.2s;
 }

 .footer-nav-item:hover {
   color: var(--brand-gold);
 }

 .footer-nav-item i {
   color: var(--brand-gold);
 }

 .footer-meta {
   display: flex;
   align-items: center;
   gap: 20px;
   color: var(--text-muted);
   font-size: 13px;
   font-weight: 600;
 }

 .social-icons {
   display: flex;
   gap: 12px;
 }

 .social-icons .icon-circle {
   width: 28px;
   height: 28px;
   background: var(--text-main);
   color: var(--bg-base);
   border-radius: 50%;
   display: grid;
   place-items: center;
   transition: all 0.2s;
   cursor: pointer;
 }

 .social-icons .icon-circle:hover {
   background: var(--brand-gold);
   transform: translateY(-2px);
 }

 @media (max-width: 768px) {
   .contact-card {
     padding: 24px;
   }

   .footer-row {
     flex-direction: column;
     align-items: flex-start;
     gap: 24px;
   }

   .nav-links {
     display: none;
   }

   .main-contents {
     padding: 90px 0 20px;
   }
 }