/*
Theme Name:   Hello Elementor Child
Theme URI:    https://elementor.com/
Description:  Hello Elementor Child Theme with custom design system
Author:       Your Name
Author URI:   https://yourwebsite.com/
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  hello-elementor-child
Tags:         elementor, child-theme
*/

/* =============================================
   IMPORT GOOGLE FONT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =============================================
   DESIGN TOKENS / CSS VARIABLES
   ============================================= */
:root {
  /* Brand Colors */
  --color-primary:         #1560C1;
  --color-primary-dark:    #0A4FA3;
  --color-primary-light:   #2E85FF;
  --color-primary-accent:  #3B9BFF;

  /* Neutrals */
  --color-background:      #FFFFFF;
  --color-foreground:      #121212;
  --color-muted:           #F5F7FA;
  --color-muted-fg:        #636D7D;
  --color-border:          #DCE3EE;

  /* Semantic */
  --color-card:            #FFFFFF;
  --color-destructive:     #F04040;
  --color-destructive-fg:  #FFFFFF;

  /* Typography */
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.10), 0 2px 4px -2px rgb(0 0 0 / 0.10);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.10), 0 4px 6px -4px rgb(0 0 0 / 0.10);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / 0.10), 0 8px 10px -6px rgb(0 0 0 / 0.10);
  --shadow-hover: 0 8px 25px -5px rgba(16, 96, 193, 0.30);

  /* Transitions */
  --transition-base:  all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   GLOBAL BASE STYLES
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
	
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	 
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-foreground);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;     line-height: 1.1; }
.text-6xl  { font-size: 3.75rem;  line-height: 1.1; }

/* =============================================
   ELEMENTOR CONTAINER / LAYOUT OVERRIDES
   ============================================= */
.elementor-section .elementor-container,
.e-con-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* =============================================
   GRADIENT UTILITIES
   ============================================= */
.text-gradient {
  background: linear-gradient(135deg, #0A4FA3, #2E85FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bg-brand-gradient {
  background: linear-gradient(135deg, #0A4FA3, #216FE4);
}

.bg-light-section {
  background-color: #F5F7FA;
}

/* =============================================
   BUTTON STYLES
   ============================================= */

/* Primary Button */
.elementor-button,
.elementor-button-wrapper .elementor-button,
a.elementor-button,
.btn-primary {
  /*font-family: var(--font-sans);*/
  /*font-weight: 600;*/
  /*font-size: 0.875rem;*/
  /*line-height: 1.25rem;*/
  /*padding: 0.75rem 1.5rem;*/
  /*border-radius: var(--radius);*/
  /*background-color: var(--color-primary);*/
  /*color: #FFFFFF !important;*/
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: var(--transition-slow);
  letter-spacing: 0;
}

.elementor-button:hover,
.elementor-button-wrapper .elementor-button:hover,
a.elementor-button:hover,
.btn-primary:hover {
  /*background-color: var(--color-primary-dark);*/
  /*color: #FFFFFF !important;*/
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  text-decoration: none !important;
}

/* Secondary / Outline Button */
.btn-outline {
  /*font-family: var(--font-sans);*/
  /*font-weight: 600;*/
  /*font-size: 0.875rem;*/
  /*padding: 0.75rem 1.5rem;*/
  /*border-radius: var(--radius);*/
  background-color: transparent;
  /*color: var(--color-primary);*/
  /*border: 2px solid var(--color-primary);*/
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-slow);
}

.btn-outline:hover {
  /*background-color: var(--color-primary);*/
  /*color: #FFFFFF;*/
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Ghost / Muted Button */
/*.btn-ghost {*/
/*  font-family: var(--font-sans);*/
/*  font-weight: 600;*/
/*  font-size: 0.875rem;*/
/*  padding: 0.75rem 1.5rem;*/
/*  border-radius: var(--radius);*/
/*  background-color: transparent;*/
/*  color: var(--color-foreground);*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  text-decoration: none;*/
/*  transition: var(--transition-slow);*/
/*}*/

/*.btn-ghost:hover {*/
/*  background-color: var(--color-muted);*/
/*  color: var(--color-foreground);*/
/*}*/

/* =============================================
   PILL TAG
   ============================================= */
.pill-tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none;
}

.pill-tag:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

/* =============================================
   CARD STYLES
   ============================================= */
.card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  transition: var(--transition-slow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 96, 193, 0.3);
}

.card-elevated {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  transition: var(--transition-slow);
}

.card-elevated:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

/* =============================================
   HOVER LIFT EFFECT
   ============================================= */
.hover-lift {
  transition: var(--transition-slow);
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* =============================================
   SECTION PADDING
   ============================================= */
.section-padding {
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 1rem;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Fade Up */
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* Pulse */
@keyframes pulse {
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Spin */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A4FA3, #2E85FF);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ======================================
   TRANSPARENT HEADER (WHITE LOGO)
====================================== */

.site-header--transparent .hfe-site-logo-img{
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}


/* ======================================
   STICKY HEADER (NORMAL LOGO)
====================================== */

.site-header--scrolled .hfe-site-logo-img{
    filter: none;
}
/* Desktop & Laptop Only */
@media (min-width:1025px){

/* Menu color when transparent */
.site-header--transparent .hfe-nav-menu a{
    color:#ffffff !important;
}

/* Hover */
.site-header--transparent .hfe-nav-menu a:hover{
    color:#ffffffcc !important;
}

}

/* =============================================
   ELEMENTOR WIDGET OVERRIDES
   ============================================= */

/* Headings */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-sans);
}

/* Text Editor */
.elementor-widget-text-editor {
  font-family: var(--font-sans);
  color: var(--color-muted-fg);
  line-height: 1.625;
}

/* Icon Box */
.elementor-widget-icon-box .elementor-icon-box-title {
  font-family: var(--font-sans);
  font-weight: 700;
}

/* Image */
.elementor-widget-image img {
  border-radius: var(--radius);
}

/* Divider */
.elementor-widget-divider .elementor-divider-separator {
  border-color: var(--color-border);
}

/* =============================================
   FORMS
   ============================================= */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-foreground);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  width: 100%;
  transition: var(--transition-base);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 96, 193, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-muted-fg);
  opacity: 1;
}

/* =============================================
   ELEMENTOR FORMS PLUGIN COMPATIBILITY
   ============================================= */
.elementor-form .elementor-field-group .elementor-field {
  font-family: var(--font-sans);
  border-radius: var(--radius);
  border-color: var(--color-border);
}

.elementor-form .elementor-field-group .elementor-field:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 96, 193, 0.15);
}

.elementor-form .elementor-button {
  font-family: var(--font-sans);
  font-weight: 600;
}




/* =============================================
   BADGES / LABELS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.badge-primary {
  background-color: rgba(21, 96, 193, 0.1);
  color: var(--color-primary);
}

.badge-muted {
  background-color: var(--color-muted);
  color: var(--color-muted-fg);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}

/* =============================================
   SECTION BACKGROUND HELPERS
   ============================================= */
.bg-white      { background-color: #FFFFFF; }
.bg-muted      { background-color: var(--color-muted); }
.bg-primary    { background-color: var(--color-primary); }
.bg-dark       { background-color: #0F172A; }

/* =============================================
   RESPONSIVE TYPOGRAPHY
   ============================================= */
@media (max-width: 767px) {
  .elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  .elementor-widget-heading .elementor-heading-title.elementor-size-xl {
    font-size: 1.875rem;
    line-height: 1.25;
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .scroll-progress,
  .elementor-nav-menu {
    display: none !important;
  }
}


/* ===== Expert Assistance Form ===== */

.expert-form{
max-width:900px;
margin:auto;
background:#FFFFFF;
padding:40px;
border-radius:16px;
font-family:'DM Sans',sans-serif;
}

.form-title{
font-size:28px;
font-weight:700;
margin-bottom:8px;
}

.form-subtitle{
color:#6b7280;
margin-bottom:25px;
}

/* Grid Layout */
.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

@media(max-width:768px){
.form-grid{
grid-template-columns:1fr;
}
}

/* Fields */
.form-field{
margin-bottom:20px;
}

.form-field label{
font-size:14px;
font-weight:500;
margin-bottom:6px;
display:block;
}

/* Inputs */
.expert-form input,
.expert-form select,
.expert-form textarea{
width:100%;
height:46px;
border:1px solid #d1d5db;
border-radius:8px;
padding:10px 14px;
font-size:14px;
background:#fff;
}

.expert-form textarea{
height:120px;
resize:none;
}

/* Upload */
.upload-box input[type=file]{
border:2px dashed #d1d5db;
padding:14px;
height:auto;
background:#fff;
cursor:pointer;
}

/* Checkbox */
.form-consent{
margin:15px 0;
font-size:14px;
color:#6b7280;
}

/* Submit Button */
.submit-wrap input[type=submit]{
width:100%;
height:56px;
border-radius:12px;
border:none;
font-weight:700;
font-size:18px;
color:#fff;
background:linear-gradient(90deg,#7aa2d8,#8fb1e5);
cursor:pointer;
transition:.3s;
}

.submit-wrap input[type=submit]:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* Note */
.form-note{
text-align:center;
font-size:12px;
color:#6b7280;
margin-top:10px;
}
