/**
 * Global Styles for Sher Agency Child Theme
 * 
 * @package SherAgency_Child
 * @version 1.0.0
 */

/* ======================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ====================================== */
:root {
    /* Brand Colors */
    --primary-color: #e2a422;
    --primary-dark: #d74715;
    --primary-light: #fffbea;
    --secondary-color: #57725a;
    --secondary-dark: #3b4e3d;
    --secondary-light: #c5b68d;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-25: #f1f1f1;
    --gray-50: #e3e3e3;
    --gray-100: #d4d4d4;
    --gray-200: #c6c6c6;
    --gray-300: #aaaaaa;
    --gray-400: #8d8d8d;
    --gray-500: #717171;
    --gray-600: #5a5a5a;
    --gray-700: #444444;
    --gray-800: #2d2d2d;
    --gray-900: #171717;
    --green-light: #c5b68d;
    --green-medium: #57725a;
    --green-dark: #3b4e3d;
    --green-darker: #314f3f;
    --yellow-lighter: #fffbea;
    --yellow-light: #d6cac0;
    --yellow-medium: #e2a422;
    --yellow-dark: #d74715;
    --black-dark: #241e1e;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #06b6d4;
    
    /* Typography - Optimized with system fonts fallback */
    --font-primary: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-header: 'Poiret One', cursive;
    --font-secondary: var(--font-header);
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    
    /* Spacing */
    --space-1: 0.25rem;     /* 4px */
    --space-2: 0.5rem;      /* 8px */
    --space-3: 0.75rem;     /* 12px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-8: 2rem;        /* 32px */
    --space-10: 2.5rem;     /* 40px */
    --space-12: 3rem;       /* 48px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    --space-24: 6rem;       /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ======================================
   TYPOGRAPHY
   ====================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 var(--space-4) 0;
    color: var(--gray-900);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin: 0 0 var(--space-4) 0;
}

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

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

/* ======================================
   UTILITY CLASSES
   ====================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-4);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--space-4) * -0.5);
}

.col {
    flex: 1;
    padding: 0 calc(var(--space-4) * 0.5);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-600); }

/* Background Utilities */
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--gray-100); }

/* Spacing Utilities */
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: var(--space-4); }
.pb-8 { padding-bottom: var(--space-8); }
.pt-0 { padding-top: 0; }
.pt-4 { padding-top: var(--space-4); }
.pt-8 { padding-top: var(--space-8); }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* =================================
   Button Styles - Zoomies
   ================================= */

/* Base Button Styles */
.btn,
.elementor-button.btn,
.btn--primary-light .elementor-button,
.btn--primary-dark .elementor-button,
.btn--primary-yellow .elementor-button,
.btn--secondary-light .elementor-button,
.btn--secondary-light-icon .elementor-button,
.btn--secondary-dark .elementor-button,
.btn--icon-only .elementor-button,
.btn--announcement .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem !important;
  border-radius: 50px !important;
  font-family: inherit;
  font-size: 1rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: all 0.3s ease !important;
  text-decoration: none;
  white-space: nowrap;
  background-image: none !important;
}

/* Elementor button text alignment */
.elementor-button.btn .elementor-button-text,
.btn--primary-light .elementor-button .elementor-button-text,
.btn--primary-dark .elementor-button .elementor-button-text,
.btn--primary-yellow .elementor-button .elementor-button-text,
.btn--secondary-light .elementor-button .elementor-button-text,
.btn--secondary-light-icon .elementor-button .elementor-button-text,
.btn--secondary-dark .elementor-button .elementor-button-text,
.btn--icon-only .elementor-button .elementor-button-text,
.btn--announcement .elementor-button .elementor-button-text {
  flex-grow: 0;
}

/* =================================
   PRIMARY BUTTONS - LIGHT
   ================================= */
.btn--primary-light .elementor-button {
  background-color: #FFFBEA !important;
  color: #241E1E !important;
  border-color: #E0E0E0 !important;
}

/* Add arrow using CSS */
.btn--primary-light .elementor-button::after {
  content: '';
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn--primary-light:hover .elementor-button,
.btn--primary-light .elementor-button:hover {
  background-color: #F0A820 !important;
  color: #1A1A1A !important;
  border-color: #F0A820 !important;
  transform: translateY(-2px);

}

.btn--primary-light:hover .elementor-button::after,
.btn--primary-light .elementor-button:hover::after {
  transform: translateX(4px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--primary-light:active .elementor-button,
.btn--primary-light .elementor-button:active {
  background-color: #E85D3C !important;
  color: #FFFFFF !important;
  border-color: #E85D3C !important;
  transform: translateY(0);

}

.btn--primary-light:active .elementor-button::after,
.btn--primary-light .elementor-button:active::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--primary-light .elementor-button:disabled {
  background-color: #C6C6C6 !important;
  color: #5A5A5A !important;
  border-color: #C6C6C6 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}

/* =================================
   PRIMARY BUTTONS - DARK
   ================================= */
.btn--primary-dark .elementor-button {
  background-color: #241E1E !important;
  color: #FFFBEA !important;
  border-color: #241E1E !important;
}

/* Add arrow using CSS */
.btn--primary-dark .elementor-button::after {
  content: '';
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}



.btn--primary-dark:hover .elementor-button,
.btn--primary-dark .elementor-button:hover {
  background-color: #E2A422 !important;
  color: #241E1E !important;
  border-color: #FFFBEA !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3) !important;
}

.btn--primary-dark:hover .elementor-button::after,
.btn--primary-dark .elementor-button:hover::after {
  transform: translateX(4px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--primary-dark:active .elementor-button,
.btn--primary-dark .elementor-button:active {
  background-color: #E85D3C !important;
  color: #FFFFFF !important;
  border-color: #E85D3C !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.btn--primary-dark:active .elementor-button::after,
.btn--primary-dark .elementor-button:active::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--primary-dark .elementor-button:disabled {
  background-color: #717171 !important;
  color: #D4D4D4 !important;
  border-color: #717171 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}




/* =================================
   PRIMARY BUTTONS - YELLOW
   ================================= */
.btn--primary-yellow .elementor-button {
  background-color: #E2A422 !important;
  color: #241E1E !important;
  border-color: #E2A422 !important;
}

/* Add arrow using CSS */
.btn--primary-yellow .elementor-button::after {
  content: '';
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn--primary-yellow:hover .elementor-button,
.btn--primary-yellow .elementor-button:hover {
  background-color: #D74715 !important;
  color: #D6CAC0 !important;
  border-color: #D74715 !important;
  transform: translateY(-2px);
}

.btn--primary-yellow:hover .elementor-button::after,
.btn--primary-yellow .elementor-button:hover::after {
  transform: translateX(4px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--primary-yellow:active .elementor-button,
.btn--primary-yellow .elementor-button:active {
  background-color: #E85D3C !important;
  color: #FFFFFF !important;
  border-color: #E85D3C !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.btn--primary-yellow:active .elementor-button::after,
.btn--primary-yellow .elementor-button:active::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--primary-yellow .elementor-button:disabled {
  background-color: #C6C6C6 !important;
  color: #5A5A5A !important;
  border-color: #C6C6C6 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}





/* =================================
   SECONDARY BUTTONS - LIGHT
   ================================= */
.btn--secondary-light .elementor-button {
  background-color: transparent !important;
  color: #241E1E !important;
  border: 1px solid #241E1E !important;
  border-color: #241E1E !important;
  min-height:50px;
}

.btn--secondary-light:hover .elementor-button,
.btn--secondary-light .elementor-button:hover {
  background-color: #E2A422 !important;
  color: #241E1E !important;
  border: 1px solid #FFFBEA !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3) !important;
}

.btn--secondary-light:active .elementor-button,
.btn--secondary-light .elementor-button:active {
  background-color: #D74715 !important;
  color: #D6CAC0 !important;
  border: 1px solid #C5B68D !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.btn--secondary-light .elementor-button:disabled {
  background-color: transparent !important;
  color: #D4D4D4 !important;
  border: 1px solid #D4D4D4 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}

/* =================================
   SECONDARY BUTTONS - LIGHT WITH ICON
   ================================= */
.btn--secondary-light-icon .elementor-button {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #FFF !important;
}

/* Add arrow using CSS */
.btn--secondary-light-icon .elementor-button::after {
  content: '';
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
} 

.btn--secondary-light-icon:hover .elementor-button,
.btn--secondary-light-icon .elementor-button:hover {
  background-color: #E2A422 !important;
  color: #241E1E !important;
  border-color: #FFFBEA !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3) !important;
}

.btn--secondary-light-icon:hover .elementor-button::after,
.btn--secondary-light-icon .elementor-button:hover::after {
  transform: translateX(4px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--secondary-light-icon:active .elementor-button,
.btn--secondary-light-icon .elementor-button:active {
  background-color: #C5B68D !important;
  color: #D6CAC0 !important;
  border-color: #D74715 !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.btn--secondary-light-icon:active .elementor-button::after,
.btn--secondary-light-icon .elementor-button:active::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--secondary-light-icon .elementor-button:disabled {
  background-color: transparent !important;
  color: #D4D4D4 !important;
  border-color: #D4D4D4 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}

/* =================================
   SECONDARY BUTTONS - DARK
   ================================= */
.btn--secondary-dark .elementor-button {
  background-color: transparent !important;
  color: #FFFBEA !important;
  border:1px solid  #FFFBEA !important;
  min-height: 50px;
}

.btn--secondary-dark:hover .elementor-button,
.btn--secondary-dark .elementor-button:hover {
  background-color: #E2A422 !important;
  color: #241E1E !important;
  border:1px solid  #FFFBEA !important;
  transform: translateY(-2px);

}

.btn--secondary-dark:active .elementor-button,
.btn--secondary-dark .elementor-button:active {
  background-color: #D74715 !important;
  color: #D6CAC0 !important;
  border:1px solid  #C5B68D !important;
  transform: translateY(0);

}

.btn--secondary-dark .elementor-button:disabled {
  background-color: transparent !important;
  color: #D4D4D4 !important;
  border:1px solid  #D4D4D4 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}

/* =================================
   ICON ONLY BUTTONS
   ================================= */
.btn--icon-only .elementor-button {
  padding: 0.75rem !important;
  background-color: transparent !important;
  color: #FFFBEA !important;
  border:1px solid  #FFFBEA !important;
  min-width: 48px;
  min-height: 48px;
}

/* Add arrow using CSS */
.btn--icon-only .elementor-button::after {
  content: '';
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn--icon-only:hover .elementor-button,
.btn--icon-only .elementor-button:hover {
  background-color: #E2A422 !important;
  color: #1A1A1A !important;
   border:1px solid #FFFBEA !important;
  transform: translateY(-2px);
  
}

.btn--icon-only:hover .elementor-button::after,
.btn--icon-only .elementor-button:hover::after {
  transform: translateX(4px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--icon-only:active .elementor-button,
.btn--icon-only .elementor-button:active {
  background-color: #D74715 !important;
  color: #FFFFFF !important;
   border:1px solid #FFFBEA !important;
  transform: translateY(0);

}

.btn--icon-only:active .elementor-button::after,
.btn--icon-only .elementor-button:active::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19M19 12L12 5M19 12L12 19' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--icon-only .elementor-button:disabled {
  background-color: transparent !important;
  color: #A0A0A0 !important;
   border:1px solid #D4D4D4 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}

/* Icon size within buttons */
.btn--icon-only svg,
.btn svg,
.elementor-button.btn svg,
.elementor-button.btn i,
.btn--primary-light .elementor-button svg,
.btn--primary-light .elementor-button i,
.btn--primary-dark .elementor-button svg,
.btn--primary-dark .elementor-button i,
.btn--secondary-light .elementor-button svg,
.btn--secondary-light .elementor-button i,
.btn--secondary-light-icon .elementor-button svg,
.btn--secondary-light-icon .elementor-button i,
.btn--secondary-dark .elementor-button svg,
.btn--secondary-dark .elementor-button i,
.btn--icon-only .elementor-button svg,
.btn--icon-only .elementor-button i,
.btn--announcement .elementor-button svg,
.btn--announcement .elementor-button i {
  width: 20px;
  height: 20px;
  fill: currentColor;
  font-size: 20px;
}


.btn--full .elementor-button {
	width: 100%;
}
/* =================================
   ANNOUNCEMENT BAR BUTTONS
   ================================= */
.btn--announcement .elementor-button {
  background-color: #F0A820 !important;
  color: #1A1A1A !important;
   border:1px solid #F0A820 !important;
  padding: 0.625rem 1.5rem !important;
  font-weight: 700;
}

.btn--announcement:hover .elementor-button,
.btn--announcement .elementor-button:hover {
  background-color: #C5B68D !important;
  color: #171717 !important;
   border:1px solid #F1F1F1 !important;
  transform: translateY(-1px);

}

.btn--announcement:active .elementor-button,
.btn--announcement .elementor-button:active {
  background-color: #E85D3C !important;
  color: #D6CAC0 !important;
   border:1px solid #F1F1F1 !important;
  transform: translateY(0);

}

.btn--announcement .elementor-button:disabled {
  background-color: #E0E0E0 !important;
  color: #A0A0A0 !important;
   border:1px solid #E0E0E0 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none !important;
}

/* =================================
   UTILITY CLASSES
   ================================= */

/* For arrow icons in buttons */
.btn__icon,
.elementor-button.btn .elementor-button-icon,
.btn--primary-light .elementor-button .elementor-button-icon,
.btn--primary-dark .elementor-button .elementor-button-icon,
.btn--secondary-light .elementor-button .elementor-button-icon,
.btn--secondary-light-icon .elementor-button .elementor-button-icon,
.btn--secondary-dark .elementor-button .elementor-button-icon,
.btn--icon-only .elementor-button .elementor-button-icon,
.btn--announcement .elementor-button .elementor-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn:hover .btn__icon,
.elementor-button.btn:hover .elementor-button-icon,
.btn--primary-light:hover .elementor-button .elementor-button-icon,
.btn--primary-light .elementor-button:hover .elementor-button-icon,
.btn--primary-dark:hover .elementor-button .elementor-button-icon,
.btn--primary-dark .elementor-button:hover .elementor-button-icon,
.btn--secondary-light:hover .elementor-button .elementor-button-icon,
.btn--secondary-light .elementor-button:hover .elementor-button-icon,
.btn--secondary-light-icon:hover .elementor-button .elementor-button-icon,
.btn--secondary-light-icon .elementor-button:hover .elementor-button-icon,
.btn--secondary-dark:hover .elementor-button .elementor-button-icon,
.btn--secondary-dark .elementor-button:hover .elementor-button-icon,
.btn--icon-only:hover .elementor-button .elementor-button-icon,
.btn--icon-only .elementor-button:hover .elementor-button-icon,
.btn--announcement:hover .elementor-button .elementor-button-icon,
.btn--announcement .elementor-button:hover .elementor-button-icon {
  transform: translateX(4px);
}

/* Full width button */
.btn--full-width .elementor-button {
  width: 100% !important;
}

/* Small button variant */
.btn--small .elementor-button {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem !important;
}

/* Large button variant */
.btn--large .elementor-button {
  padding: 1rem 2rem !important;
  font-size: 1.125rem !important;
}

/* =================================
   RESPONSIVE STYLES
   ================================= */
/* Mobile - Full width buttons below 768px */
@media (max-width: 767px) {
  .btn,
  .elementor-button.btn,
  .btn--primary-light .elementor-button,
  .btn--primary-dark .elementor-button,
  .btn--primary-yellow .elementor-button,
  .btn--secondary-light .elementor-button,
  .btn--secondary-light-icon .elementor-button,
  .btn--secondary-dark .elementor-button,
  .btn--icon-only .elementor-button,
  .btn--announcement .elementor-button {
    width: 100% !important;
    justify-content: center;
  }


    .btn,
  .elementor-button.btn,
  .btn--primary-light,
  .btn--primary-dark,
  .btn--primary-yellow,
  .btn--secondary-light,
  .btn--secondary-light-icon,
  .btn--secondary-dark,
  .btn--icon-only,
  .btn--announcement {
    width: 100% !important;
  
  }

}

/* ======================================
   FORMS
   ====================================== */
.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: var(--space-3);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.5;
    color: var(--gray-900);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in {
    animation: fadeIn var(--transition-slow) ease-in-out;
}

.fade-in-up {
    animation: fadeInUp var(--transition-slow) ease-in-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }
    
    .container {
        padding: 0 var(--space-3);
    }
    
    .row {
        margin: 0 calc(var(--space-3) * -0.5);
    }
    
    .col {
        padding: 0 calc(var(--space-3) * 0.5);
    }
}


/** Video **/
.elementor-custom-embed-play {
  display: flex;
width: 79.926px;
height: 80px;
padding: 22.411px 26.204px 23.174px 21.186px;
flex-direction: column;
justify-content: center;
align-items: center;
flex-shrink: 0;
  border-radius: 109.939px;
background: rgba(255, 255, 255, 0.40);
backdrop-filter: blur(44.24028015136719px);
}

/* ======================================
   LIST STYLES
   ====================================== */
.wp-block-list {
  list-style: none;
  padding-left: 0;
}

.wp-block-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-3);
}

.wp-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 22C17.523 22 22 17.523 22 12C22 6.477 17.523 2 12 2C6.477 2 2 6.477 2 12C2 17.523 6.477 22 12 22ZM15.536 8.464C15.7238 8.27649 15.9783 8.17126 16.2437 8.17144C16.5091 8.17163 16.7635 8.27723 16.951 8.465C17.1385 8.65277 17.2437 8.90734 17.2436 9.17271C17.2434 9.43807 17.1378 9.69249 16.95 9.88L11.297 15.533L11.293 15.537C11.2003 15.6302 11.0902 15.7041 10.9689 15.7546C10.8475 15.8051 10.7174 15.831 10.586 15.831C10.4546 15.831 10.3245 15.8051 10.2031 15.7546C10.0818 15.7041 9.97165 15.6302 9.879 15.537L9.875 15.533L7.05 12.708C6.95449 12.6158 6.87831 12.5054 6.8259 12.3834C6.77349 12.2614 6.7459 12.1302 6.74475 11.9974C6.7436 11.8646 6.7689 11.7329 6.81918 11.61C6.86946 11.4872 6.94371 11.3755 7.0376 11.2816C7.1315 11.1877 7.24315 11.1135 7.36605 11.0632C7.48894 11.0129 7.62062 10.9876 7.7534 10.9887C7.88618 10.9899 8.0174 11.0175 8.1394 11.0699C8.26141 11.1223 8.37175 11.1985 8.464 11.294L10.586 13.415L15.536 8.465V8.464Z' fill='%232C2C2C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ======================================
   BLOCKQUOTE STYLES
   ====================================== */
.wp-block-quote.is-layout-flow,
.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow {
  background-color: var(--yellow-lighter);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
  position: relative;
}

.wp-block-quote.is-layout-flow p,
.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow p {
  color: var(--yellow-dark);

font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 120%; 
  margin: 0;
  position: relative;
}

/* Citation/Name styling */
.wp-block-quote.is-layout-flow cite,
.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow cite {
  display: block;
  text-align: right;
  margin-top: var(--space-4);
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 500;
}

.wp-block-quote.is-layout-flow .has-text-align-right,
.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow .has-text-align-right {
  color: #444;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: var(--space-4);
}

/* ======================================
   CONTACT LINK CURSOR BEHAVIOR
   ====================================== */
.grid-contact-link {
    cursor: default;
}

.grid-contact-link .contact-link--item {
    cursor: pointer;
    display: inline-block;
    width: auto;
}

/* Hover effect: only when directly hovering contact-link--item */
.grid-contact-link .contact-link--item:hover {
    cursor: pointer;
}

/* ======================================
   MERCH MODAL - Only ::after is clickable
   ====================================== */
.plan-features li[data-merch-modal] {
    cursor: default !important;
    pointer-events: none !important;
}

/* Keep only the ::after hover styling; don't recolor the whole LI */
.plan-features li[data-merch-modal]:hover {
    color: inherit !important;
    transform: none !important;
}

.plan-features li[data-merch-modal]::after {
    pointer-events: auto !important;
    cursor: pointer !important;
}
