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

/* ======================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ====================================== */
:root {
    /* Brand Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #06b6d4;
    
    /* Typography - Optimized with system fonts fallback */
    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-header: 'massilia', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --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;
  border: 2px solid transparent !important;
  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);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3) !important;
}

.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);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.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: #FFFBEA !important;
  color: #1A1A1A !important;
  border-color: #FFFBEA !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3) !important;
}

.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-color: #241E1E !important;
}

.btn--secondary-light:hover .elementor-button,
.btn--secondary-light .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:active .elementor-button,
.btn--secondary-light .elementor-button:active {
  background-color: #D74715 !important;
  color: #D6CAC0 !important;
  border-color: #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-color: #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: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.btn--secondary-dark:hover .elementor-button,
.btn--secondary-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--secondary-dark:active .elementor-button,
.btn--secondary-dark .elementor-button:active {
  background-color: #D74715 !important;
  color: #D6CAC0 !important;
  border-color: #C5B68D !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.btn--secondary-dark .elementor-button:disabled {
  background-color: transparent !important;
  color: #D4D4D4 !important;
  border-color: #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-color: #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-color: #FFFBEA !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.3) !important;
}

.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-color: #FFFBEA !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(232, 93, 60, 0.4) !important;
}

.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-color: #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-color: #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-color: #F1F1F1 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 168, 32, 0.4) !important;
}

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

.btn--announcement .elementor-button:disabled {
  background-color: #E0E0E0 !important;
  color: #A0A0A0 !important;
  border-color: #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);
    }
}
