:root {
    --sr-gold: #f0bc30;
    --sr-gold-dark: #d4a525;
    --sr-gold-light: #f5d06a;
    --sr-dark: #0a0a0a;
    --sr-dark-2: #141414;
    --sr-dark-3: #1e1e1e;
    --sr-light: #f8f8f8;
    --sr-light-2: #f0f0f0;
    --sr-charcoal: #2a2a2a;
}

html {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
    font-family: 'Space Grotesk', sans-serif !important;
    letter-spacing: -0.03em !important;
}

.wp-block-heading {
    font-weight: 700 !important;
}

/* ===== BUTTONS ===== */
.wp-block-button__link,
button, .button, input[type="submit"] {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 0.875rem 2rem !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
}

.wp-block-button__link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wp-block-button__link:active::after {
    width: 300px;
    height: 300px;
}

.has-accent-background-color .wp-block-button__link {
    background: linear-gradient(135deg, var(--sr-gold) 0%, var(--sr-gold-dark) 100%) !important;
    color: #0a0a0a !important;
}

.has-accent-background-color .wp-block-button__link:hover {
    background: linear-gradient(135deg, var(--sr-gold-light) 0%, var(--sr-gold) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 188, 48, 0.3);
}

.has-base-background-color .wp-block-button__link {
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.has-base-background-color .wp-block-button__link:hover {
    background: var(--sr-light) !important;
    color: var(--sr-dark) !important;
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.wp-site-blocks > header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    background: rgba(10, 10, 10, 0.85) !important;
    border-bottom: 2px solid rgba(240, 188, 48, 0.3) !important;
    transition: all 0.3s ease;
}

.wp-site-blocks > header:hover {
    border-bottom-color: rgba(240, 188, 48, 0.6) !important;
}

.wp-site-blocks > header .wp-block-site-title a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.35rem !important;
    letter-spacing: 2px !important;
    background: linear-gradient(135deg, var(--sr-gold) 0%, var(--sr-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keep nav shrink-wrapped so it sits on the right */
.wp-site-blocks > header .wp-block-navigation {
    flex: 0 0 auto !important;
    width: auto !important;
}

/* Header row: logo left, nav+toggle right */
.wp-site-blocks > header .sr-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

/* Fix header toggle/burger buttons - override base button !important rules */
#sr-theme-toggle,
#sr-mobile-burger {
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    overflow: visible !important;
    position: static !important;
    border-radius: 0 !important;
    background: none !important;
    border: none !important;
}
#sr-theme-toggle {
    font-size: 1.1rem !important;
    padding: 8px 10px !important;
}
#sr-mobile-burger {
    padding: 4px 8px !important;
    font-size: 1.65rem !important;
}

.wp-block-navigation a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.8125rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    position: relative !important;
    padding: 0.5rem 0 !important;
}

.wp-block-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sr-gold);
    transition: width 0.3s ease;
}

.wp-block-navigation a:hover::after,
.wp-block-navigation a[aria-current="page"]::after {
    width: 100%;
}

/* ===== COVER / HERO ===== */
.wp-block-cover {
    position: relative;
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}

.wp-block-cover h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.05 !important;
    animation: fadeInUp 1s ease;
}

.wp-block-cover p {
    animation: fadeInUp 1s ease 0.2s both;
}

.wp-block-cover .wp-block-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* ===== SECTIONS ===== */
main > .wp-block-group.alignfull:not(.sr-hero-wrapper) {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Reduce space between h2 and p in section headers */
.wp-block-group.alignfull > .wp-block-group.alignwide > .wp-block-heading {
    margin-bottom: 0.25rem !important;
}

/* Increase space between section intro text and cards grid */
.wp-block-group.alignfull > .sr-industries-grid,
.wp-block-group.alignfull > .sr-why-grid,
.wp-block-group.alignfull > .sr-products-grid,
.wp-block-group.alignfull > .sr-commitment-grid {
    margin-top: 2rem !important;
}

.wp-block-group.alignfull {
    position: relative;
}

/* Section with light bg */
.has-base-2-background-color {
    background: linear-gradient(180deg, var(--sr-light) 0%, #ffffff 100%) !important;
}

/* ===== FEATURE / ICON CARDS ===== */
.has-base-2-background-color .wp-block-column {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem 1.5rem !important;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(240,188,48,0.08);
}

.has-base-2-background-color .wp-block-column:hover {
    transform: translateY(-8px);
    background: rgba(240,188,48,0.05);
    border-color: rgba(240,188,48,0.2);
}

.has-base-2-background-color .wp-block-column h3 {
    font-size: 1.15rem !important;
}

.has-base-2-background-color .wp-block-column p:first-child {
    margin-bottom: 0 !important;
}

/* ===== PRODUCT CARDS ===== */
.wp-block-columns .wp-block-column figure {
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    height: 340px;
}

.wp-block-columns .wp-block-column figure:hover img {
    transform: scale(1.08);
}

.wp-block-columns .wp-block-column figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wp-block-columns .wp-block-column h3 a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.wp-block-columns .wp-block-column h3 a:hover {
    color: var(--sr-gold) !important;
}

/* ===== DARK SECTION with GOLD ===== */
.has-contrast-background-color.has-accent-color h2 {
    text-shadow: 0 0 40px rgba(240, 188, 48, 0.15);
}

/* ===== STATS SECTION ===== */
.alignfull.has-base-background-color > .alignwide.wp-block-columns > .wp-block-column h2 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    background: linear-gradient(135deg, var(--sr-gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alignfull.has-base-background-color > .alignwide.wp-block-columns > .wp-block-column {
    text-align: center;
    padding: 0.5rem 1rem !important;
    border-right: 1px solid rgba(240,188,48,0.15);
}

.alignfull.has-base-background-color > .alignwide.wp-block-columns > .wp-block-column:last-child {
    border-right: none;
}

/* ===== PRODUCT PAGE HEADERS ===== */
.wp-block-column.is-vertically-aligned-center h1 {
    font-size: 2.5rem !important;
    margin-top: 0 !important;
}

.wp-block-column.is-vertically-aligned-center h3 {
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    color: var(--sr-gold) !important;
    margin-top: 2rem !important;
}

.wp-block-column.is-vertically-aligned-center .wp-block-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
    list-style: none;
}

.wp-block-column.is-vertically-aligned-center .wp-block-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--sr-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===== PRODUCT LISTING PAGE ===== */
.page-id-6 .wp-block-columns .wp-block-column {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1rem 1rem 1.5rem !important;
    transition: all 0.4s ease;
}

.page-id-6 .wp-block-columns .wp-block-column:hover {
    border-color: rgba(240,188,48,0.3);
    background: rgba(240,188,48,0.04);
    transform: translateY(-4px);
}

.page-id-6 .wp-block-columns .wp-block-column figure {
    border-radius: 8px;
    margin-bottom: 1rem !important;
}

/* ===== SEPARATOR ===== */
.wp-block-separator {
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--sr-gold), transparent) !important;
    border: none !important;
    opacity: 0.5;
}

/* ===== FOOTER ===== */
.wp-site-blocks > footer {
    position: relative;
}

.wp-site-blocks > footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sr-gold), transparent);
}

.wp-site-blocks > footer h3 {
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
}

.wp-site-blocks > footer a {
    transition: color 0.3s ease;
}

.wp-site-blocks > footer .alignwide.wp-block-group[style*="column-gap"] {
    grid-template-columns: 2.5fr 1fr 1.5fr !important;
    column-gap: 3rem !important;
    align-items: start;
}

.wp-site-blocks > footer a:hover {
    color: var(--sr-gold) !important;
}

/* ===== PRODUCT PAGES ===== */
.wp-block-table {
    border-radius: 8px;
    overflow: hidden;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td {
    padding: 0.75rem 1rem !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.wp-block-table tr:nth-child(odd) td {
    background: rgba(240, 188, 48, 0.05);
}

.wp-block-table tr:first-child td {
    font-weight: 600;
    background: var(--sr-gold);
    color: #0a0a0a;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sr-dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--sr-charcoal);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sr-gold);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--sr-gold);
    color: var(--sr-dark);
}

/* ===== CTA SECTION ===== */
.has-base-background-color.has-accent-color h2 {
    text-shadow: 0 0 30px rgba(240,188,48,0.1);
}

/* ===== THEME TOGGLE ===== */
#sr-theme-toggle {
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(240, 188, 48, 0.2) !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-left: 1.5rem !important;
}
#sr-theme-toggle:hover {
    background: rgba(240,188,48,0.2) !important;
    border-color: var(--sr-gold) !important;
    color: var(--sr-gold) !important;
}

body.light-mode #sr-theme-toggle {
    background: rgba(0,0,0,0.06) !important;
    border-color: rgba(0,0,0,0.2) !important;
    color: #000000 !important;
}
body.light-mode #sr-theme-toggle:hover {
    background: rgba(240,188,48,0.15) !important;
    border-color: var(--sr-gold) !important;
    color: var(--sr-gold) !important;
}

/* ===== SMOOTH THEME TRANSITION ===== */
body,
.wp-site-blocks > header,
.wp-site-blocks > footer,
.wp-block-group.alignfull {
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* ===== LIGHT MODE OVERRIDES ===== */
body.light-mode {
    background: #ffffff !important;
    color: #1a1a1a !important;
}

body.light-mode .wp-site-blocks > header {
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(0,0,0,0.08) !important;
}

body.light-mode .wp-site-blocks > header:hover {
    border-bottom-color: rgba(240,188,48,0.4) !important;
}

body.light-mode .wp-block-navigation a {
    color: #1a1a1a !important;
}

body.light-mode .wp-block-navigation a::after {
    background: var(--sr-gold);
}

body.light-mode #sr-theme-toggle {
    color: #000000;
}
body.light-mode #sr-theme-toggle:hover {
    color: var(--sr-gold);
}


body.light-mode .wp-block-cover p {
    color: #1a1a1a !important;
}

body.light-mode .wp-block-cover .has-contrast-background-color {
    background: var(--sr-gold) !important;
    color: #0a0a0a !important;
}

body.light-mode .has-base-2-background-color {
    background: #f5f5f5 !important;
}

body.light-mode .has-contrast-background-color {
    background: #1a1a1a !important;
}

body.light-mode .has-base-background-color {
    background: #ffffff !important;
}

body.light-mode .wp-block-table td {
    border-color: rgba(0,0,0,0.1) !important;
}

body.light-mode ::-webkit-scrollbar-track {
    background: #e0e0e0;
}

body.light-mode .custom-logo {
}

body.light-mode .wp-block-site-title a {
    background: linear-gradient(135deg, var(--sr-gold) 0%, var(--sr-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .wp-block-heading {
    color: #1a1a1a !important;
}

body.light-mode p,
body.light-mode li,
body.light-mode .wp-block-list li {
    color: #333 !important;
}

body.light-mode .has-contrast-2-color {
    color: #555 !important;
}
body.light-mode .has-base-2-background-color .wp-block-column {
    background: #ffffff;
    border-color: rgba(0,0,0,0.06);
}
body.light-mode .has-base-2-background-color .wp-block-column:hover {
    background: #fafafa;
    border-color: rgba(240,188,48,0.2);
}

body.light-mode .alignfull.has-base-background-color > .alignwide.wp-block-columns > .wp-block-column h2 {
    background: linear-gradient(135deg, var(--sr-gold) 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .alignfull.has-base-background-color > .alignwide.wp-block-columns > .wp-block-column p {
    color: #555 !important;
}

body.light-mode .wp-block-table tr:nth-child(odd) td {
    background: rgba(0,0,0,0.03);
}

body.light-mode .wp-block-table td {
    border-color: rgba(0,0,0,0.1) !important;
    color: #333;
}

body.light-mode .wp-block-table tr:first-child td {
    color: #0a0a0a;
}

body.light-mode .page-id-6 .wp-block-columns .wp-block-column {
    background: #fafafa;
    border-color: rgba(0,0,0,0.06);
}
body.light-mode .page-id-6 .wp-block-columns .wp-block-column:hover {
    border-color: rgba(240,188,48,0.3);
    background: #ffffff;
}

body.light-mode .wp-block-column.is-vertically-aligned-center .wp-block-list li {
    color: #333 !important;
}

body.light-mode .wp-site-blocks > footer {
    border-top-color: rgba(0,0,0,0.06);
}

body.light-mode .wp-block-separator {
    opacity: 0.3;
}

.sr-hero-btn {
    background: #1a1a1a !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.15) !important;
    transition: all 0.3s ease !important;
}
.sr-hero-btn:hover {
    background: var(--sr-gold) !important;
    color: #1a1a1a !important;
    border-color: var(--sr-gold) !important;
}
body.light-mode .sr-hero-btn {
    background: #1a1a2e !important;
    color: #fff !important;
}
body.light-mode .sr-hero-btn:hover {
    background: var(--sr-gold) !important;
    color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ====================================================
   MODERN ENHANCEMENTS — Animations, Glassmorphism, Effects
   ==================================================== */

/* ----- Keyframes ----- */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(30px, -40px) scale(1.05); }
    50%  { transform: translate(-20px, 20px) scale(0.95); }
    75%  { transform: translate(15px, -25px) scale(1.02); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%  { transform: translate(-25px, 35px) rotate(120deg); }
    66%  { transform: translate(20px, -15px) rotate(240deg); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%  { opacity: 0.7; transform: scale(1.05); }
}

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

@keyframes floatUpDelay {
    0%   { opacity: 0; transform: translateY(40px); }
    30%  { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes drift {
    0%   { transform: translateX(-10px) translateY(-10px); }
    50%  { transform: translateX(10px) translateY(10px); }
    100% { transform: translateX(-10px) translateY(-10px); }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10%  { transform: translate(-5%, -5%); }
    20%  { transform: translate(-10%, 5%); }
    30%  { transform: translate(5%, -10%); }
    40%  { transform: translate(-5%, 15%); }
    50%  { transform: translate(-10%, 5%); }
    60%  { transform: translate(15%, 0); }
    70%  { transform: translate(0, 10%); }
    80%  { transform: translate(-15%, 0); }
    90%  { transform: translate(10%, 5%); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(240, 188, 48, 0.15); }
    50%  { border-color: rgba(240, 188, 48, 0.4); }
}


/* ----- HERO SECTION — ANIMATED GRADIENT OVERLAY ----- */
.wp-block-cover::before {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(5, 5, 5, 0.92) 25%,
        rgba(240, 188, 48, 0.08) 50%,
        rgba(5, 5, 5, 0.92) 75%,
        rgba(10, 10, 10, 0.95) 100%
    ) !important;
    background-size: 400% 400% !important;
    animation: gradientShift 15s ease infinite !important;
}

/* Floating decorative circles in hero */
.wp-block-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.wp-block-cover .wp-block-cover__inner-container {
    position: relative;
    z-index: 3;
}

/* Floating background orbs — added via box-shadow on cover */
.wp-block-cover {
    overflow: hidden;
}

.wp-block-cover::after {
    background:
        radial-gradient(circle 120px at 15% 85%, rgba(240, 188, 48, 0.08), transparent 70%),
        radial-gradient(circle 180px at 80% 20%, rgba(240, 188, 48, 0.06), transparent 70%),
        radial-gradient(circle 100px at 50% 50%, rgba(255, 255, 255, 0.03), transparent 70%);
    animation: blobFloat 20s ease-in-out infinite;
}

/* ----- HERO SPLIT LAYOUT ----- */
.sr-hero-split {
    position: relative;
    background: #0e0e0e;
    overflow: hidden;
}

.sr-hero-split-inner {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    gap: 3rem;
}
.sr-hero-text {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 2;
    padding-left: 1.5rem;
}
.sr-hero-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    bottom: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--sr-gold), transparent);
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: top;
    animation: goldBarGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.sr-hero-text::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.3rem;
    width: 13px;
    height: 3px;
    background: var(--sr-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: goldCapGrow 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
@keyframes goldBarGrow {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}
@keyframes goldCapGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}
.sr-hero-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.05 !important;
    color: #fff !important;
    margin: 0 0 1.25rem !important;
}
.sr-hero-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sr-hero-line:nth-child(1) {
    animation-delay: 0.15s;
}
.sr-hero-line:nth-child(2) {
    animation-delay: 0.45s;
}
.sr-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
    color: #b0b0b0 !important;
    margin: 0 0 2.5rem !important;
    line-height: 1.6 !important;
    opacity: 0;
    animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.sr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(30px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.sr-hero-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.sr-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg, #0e0e0e 0%, #0e0e0e 25%, transparent 55%, transparent 100%);
    pointer-events: none;
}

/* Slideshow inside visual */
.sr-hero-visual .sr-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sr-hero-visual .sr-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: opacity, transform;
    z-index: 1;
}
.sr-hero-visual .sr-hero-slide:nth-child(1) { z-index: 3; }
.sr-hero-visual .sr-hero-slide:nth-child(2) { z-index: 2; }
.sr-hero-visual .sr-hero-slide:nth-child(3) { z-index: 1; }
.sr-hero-visual .sr-hero-slide:nth-child(1) {
    opacity: 1;
    animation: slideLoop 12s infinite 0s;
}
/* WhatsApp bubble on hero */
.sr-whatsapp-bubble {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}
.sr-whatsapp-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
.sr-whatsapp-bubble i {
    font-size: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .sr-hero-visual .sr-hero-slide {
        animation: none !important;
    }
    .sr-hero-visual .sr-hero-slide:nth-child(1) {
        opacity: 1 !important;
        transform: none !important;
    }
    .sr-hero-visual .sr-hero-slide:nth-child(2),
    .sr-hero-visual .sr-hero-slide:nth-child(3) {
        opacity: 0 !important;
        display: none !important;
    }
}
.sr-hero-visual .sr-hero-slide:nth-child(2) {
    animation: slideLoop 12s infinite 4s;
}
.sr-hero-visual .sr-hero-slide:nth-child(3) {
    animation: slideLoop 12s infinite 8s;
}
@keyframes slideLoop {
    0% { transform: translateY(110%) scale(0.95); opacity: 0; }
    8.33% { transform: translateY(0) scale(1); opacity: 1; }
    41.67% { transform: translateY(0) scale(1.06); opacity: 1; }
    50% { transform: translateY(-110%) scale(0.95); opacity: 0; }
    100% { transform: translateY(-110%) scale(0.95); opacity: 0; }
}
@keyframes slideFade {
    0% { opacity: 0; }
    8.33% { opacity: 1; }
    41.67% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

/* Hero actions / buttons */
.sr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.sr-hero-actions .sr-hero-btn {
    background: #1a1a1a !important;
    color: #fff !important;
    border: 1px solid var(--sr-gold) !important;
    padding: 0.9rem 2.2rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}
.sr-hero-actions .sr-hero-btn:hover {
    background: var(--sr-gold) !important;
    color: #1a1a1a !important;
    border-color: var(--sr-gold) !important;
}

/* Light mode overrides */
body.light-mode .sr-hero-split {
    background: #ffffff;
}
body.light-mode .sr-hero-title,
body.light-mode .sr-hero-line {
    color: #1a1a1a !important;
}
body.light-mode .sr-hero-visual::after {
    background: linear-gradient(105deg, #ffffff 0%, #ffffff 25%, transparent 55%, transparent 100%);
}
body.light-mode .sr-hero-actions .sr-hero-btn {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
    border-color: var(--sr-gold) !important;
}
body.light-mode .sr-hero-actions .sr-hero-btn:hover {
    background: var(--sr-gold) !important;
    color: #fff !important;
    border-color: var(--sr-gold) !important;
}

/* Hide mobile overlay on desktop so raw HTML doesn't leak into footer */
#sr-mobile-overlay {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .sr-hero-split {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        overflow: hidden;
    }
    .sr-hero-split-inner {
        flex-direction: column;
        min-height: auto;
        padding: 4rem 1.5rem 0;
        gap: 0;
    }
    .sr-hero-text {
        max-width: 100%;
        text-align: center;
        padding-bottom: 3rem;
    }
    .sr-hero-actions {
        justify-content: center;
    }
    .sr-hero-split-inner {
        align-items: stretch;
    }
    .sr-hero-visual {
        position: relative;
        top: auto;
        bottom: auto;
        right: auto;
        width: calc(100% + 3rem);
        max-width: none !important;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        height: 45vh;
        min-height: 280px;
        clip-path: none;
        box-shadow: none;
        overflow: hidden;
    }
    .sr-hero-visual .sr-hero-slides {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .sr-hero-visual .sr-hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .sr-hero-visual .sr-hero-slide {
        animation: mobileSlide 12s infinite;
        z-index: 1;
    }
    .sr-hero-visual .sr-hero-slide:nth-child(1) {
        animation: mobileSlide 12s infinite 0s;
        z-index: 1;
    }
    .sr-hero-visual .sr-hero-slide:nth-child(2) {
        animation: mobileSlide 12s infinite -4s;
        z-index: 1;
    }
    .sr-hero-visual .sr-hero-slide:nth-child(3) {
        animation: mobileSlide 12s infinite -8s;
        z-index: 1;
    }
    @keyframes mobileSlide {
        0% { opacity: 0; }
        8% { opacity: 1; }
        42% { opacity: 1; }
        50% { opacity: 0; }
        100% { opacity: 0; }
    }
    .sr-hero-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to bottom, #0e0e0e 0%, transparent 35%);
    }
    body.light-mode .sr-hero-visual::after {
        background: linear-gradient(to bottom, #ffffff 0%, transparent 35%);
    }
    .sr-hero-visual::before {
        display: none;
    }
    .sr-hero-text::before,
    .sr-hero-text::after {
        display: none !important;
    }
    .wp-site-blocks > header .sr-header-row {
        justify-content: space-between !important;
    }
    /* Reduce header padding on small screens */
    .wp-site-blocks > header.alignfull {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .wp-site-blocks > header .sr-header-logo {
        flex: 0 0 auto !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .wp-site-blocks > header .sr-header-logo .custom-logo {
        width: 210px !important;
        height: auto !important;
    }
    .wp-site-blocks > header .sr-header-logo .custom-logo-link {
        margin: 0 !important;
        padding: 0 !important;
    }
    .wp-site-blocks > header .sr-header-right {
        flex: 0 0 auto !important;
        gap: 0.08rem !important;
    }
    .wp-site-blocks > header .wp-block-navigation {
        display: none !important;
    }
    /* ---- MOBILE NAV (entirely custom - replaces WP's broken responsive container) ---- */
    /* Hide nav block's own burger (SVG icon inside <nav>) */
    header .wp-block-navigation .wp-block-navigation__responsive-container-open {
        display: none !important;
    }
    /* Show our custom burger outside the nav block */
    #sr-mobile-burger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 4px 8px !important;
        font-size: 1.65rem !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        color: inherit !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        overflow: visible !important;
        position: static !important;
        border-radius: 0 !important;
    }
    /* Fix theme toggle button on mobile - override base button styles */
    #sr-theme-toggle {
        order: 1 !important;
        padding: 8px 10px !important;
        font-size: 1.1rem !important;
        font-weight: 400 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        overflow: visible !important;
        position: static !important;
        border-radius: 0 !important;
        background: none !important;
        border: none !important;
    }
    /* Burger on right */
    #sr-mobile-burger {
        order: 2 !important;
    }
    #sr-mobile-overlay {
        display: none;
        position: fixed !important;
        inset: 0 !important;
        z-index: 99999 !important;
    }
    #sr-mobile-overlay.active {
        display: flex !important;
        flex-direction: row-reverse !important;
    }
    #sr-mobile-overlay .sr-backdrop {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.55) !important;
        animation: navBackdropIn 0.35s ease forwards;
        opacity: 0;
        z-index: 1;
    }
    @keyframes navBackdropIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
    #sr-mobile-overlay .sr-drawer {
        width: 82% !important;
        max-width: 380px !important;
        background: rgba(14, 14, 14, 0.98) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border-left: 1px solid rgba(240, 188, 48, 0.15) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 5rem 2.5rem 3rem !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        animation: navPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        transform: translateX(100%);
        z-index: 2;
    }
    body.light-mode #sr-mobile-overlay .sr-drawer {
        background: rgba(255, 255, 255, 0.98) !important;
        border-left-color: rgba(0, 0, 0, 0.06) !important;
    }
    @keyframes navPanelIn {
        0% { transform: translateX(100%); }
        100% { transform: translateX(0); }
    }
    #sr-mobile-overlay .sr-drawer a {
        font-family: 'Space Grotesk', sans-serif !important;
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        letter-spacing: -0.02em !important;
        padding: 1rem 0 !important;
        text-align: right !important;
        display: block !important;
        width: 100% !important;
        color: rgba(255, 255, 255, 0.85) !important;
        text-decoration: none !important;
        transition: color 0.2s ease !important;
        border-top: 1px solid rgba(240, 188, 48, 0.1) !important;
        opacity: 0;
        animation: navItemSlide 0.4s ease forwards;
    }
    #sr-mobile-overlay .sr-drawer a:first-child {
        border-top: none !important;
    }
    body.light-mode #sr-mobile-overlay .sr-drawer a {
        color: rgba(0, 0, 0, 0.85) !important;
        border-top-color: rgba(0, 0, 0, 0.06) !important;
    }
    #sr-mobile-overlay .sr-drawer a:nth-child(1) { animation-delay: 0.08s; }
    #sr-mobile-overlay .sr-drawer a:nth-child(2) { animation-delay: 0.14s; }
    #sr-mobile-overlay .sr-drawer a:nth-child(3) { animation-delay: 0.20s; }
    #sr-mobile-overlay .sr-drawer a:nth-child(4) { animation-delay: 0.26s; }
    #sr-mobile-overlay .sr-drawer a:nth-child(5) { animation-delay: 0.32s; }
    #sr-mobile-overlay .sr-drawer a:nth-child(6) { animation-delay: 0.38s; }
    @keyframes navItemSlide {
        0% { opacity: 0; transform: translateX(20px); }
        100% { opacity: 1; transform: translateX(0); }
    }
    #sr-mobile-overlay .sr-drawer a:hover,
    #sr-mobile-overlay .sr-drawer a.active {
        color: var(--sr-gold) !important;
    }
    #sr-mobile-overlay .sr-drawer-footer {
        margin-top: auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        padding-top: 2rem !important;
        width: 100% !important;
    }
    #sr-mobile-overlay .sr-drawer-toggle {
        font-size: 1.1rem !important;
        line-height: 1 !important;
        padding: 10px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(240, 188, 48, 0.2) !important;
        border-radius: 12px !important;
        cursor: pointer !important;
        color: rgba(255, 255, 255, 0.7) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }
    #sr-mobile-overlay .sr-drawer-toggle:hover {
        background: rgba(240, 188, 48, 0.15) !important;
        color: var(--sr-gold) !important;
        border-color: rgba(240, 188, 48, 0.4) !important;
    }
    body.light-mode #sr-mobile-overlay .sr-drawer-toggle {
        background: rgba(0, 0, 0, 0.05) !important;
        color: rgba(0, 0, 0, 0.5) !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
    }
    body.light-mode #sr-mobile-overlay .sr-drawer-toggle:hover {
        background: rgba(240, 188, 48, 0.1) !important;
        color: var(--sr-gold) !important;
        border-color: rgba(240, 188, 48, 0.3) !important;
    }
    #sr-mobile-overlay .sr-close {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        border: 1px solid rgba(240, 188, 48, 0.2) !important;
        cursor: pointer !important;
        z-index: 10 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        font-size: 1.1rem !important;
        font-family: 'Space Grotesk', sans-serif !important;
        line-height: 1 !important;
        padding: 0 !important;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 0 0 0 rgba(240, 188, 48, 0) !important;
        aspect-ratio: 1 !important;
    }
    body.light-mode #sr-mobile-overlay .sr-close {
        color: rgba(0, 0, 0, 0.6) !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
    }
    #sr-mobile-overlay .sr-close:hover {
        transform: rotate(90deg) scale(1.08) !important;
        color: var(--sr-gold) !important;
        background: rgba(240, 188, 48, 0.1) !important;
        border-color: rgba(240, 188, 48, 0.4) !important;
        box-shadow: 0 0 24px rgba(240, 188, 48, 0.15) !important;
    }
    body.light-mode #sr-mobile-overlay .sr-close:hover {
        color: var(--sr-gold) !important;
        background: rgba(240, 188, 48, 0.08) !important;
        border-color: rgba(240, 188, 48, 0.3) !important;
        box-shadow: 0 0 20px rgba(240, 188, 48, 0.1) !important;
    }
    #sr-theme-toggle {
        z-index: 50001 !important;
        display: flex !important;
        padding: 8px 10px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(240, 188, 48, 0.2) !important;
        border-radius: 10px !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    .wp-site-blocks > footer .alignwide.wp-block-group[style*="column-gap"] {
        grid-template-columns: 1fr !important;
    }
    .wp-site-blocks > footer .wp-block-group[style*="padding-right"] {
        padding-right: 0 !important;
        text-align: center;
    }
    .wp-site-blocks > footer .wp-block-group {
        text-align: center;
    }
    .wp-site-blocks > footer h3 {
        text-align: center !important;
    }
    .wp-site-blocks > footer .wp-block-navigation {
        align-items: center !important;
    }
    .wp-site-blocks > footer .wp-block-navigation .wp-block-navigation-item {
        text-align: center;
    }
    /* Keep stats 3-column on mobile */
    .has-base-background-color .wp-block-columns {
        flex-direction: row !important;
        gap: 0.5rem !important;
    }
    .has-base-background-color .wp-block-columns .wp-block-column {
        flex-basis: 33.33% !important;
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .has-base-background-color .wp-block-columns .wp-block-column h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    .has-base-background-color .wp-block-columns .wp-block-column p {
        font-size: 0.7rem !important;
    }
    /* Industries: 2-col on mobile */
    .sr-industry-card {
        padding: 0.75rem !important;
        margin: 0 !important;
    }
    .sr-industry-card p:first-child i {
        font-size: 2.2rem !important;
    }
    .sr-industry-card h3 {
        font-size: 0.85rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    .sr-industry-card p {
        font-size: 0.7rem !important;
        margin-top: 0 !important;
    }
    /* Industries — 2 per row on mobile */
    .sr-industries-grid {
        flex-wrap: wrap !important;
        margin: 0 !important;
    }
    main .sr-industries-grid > .wp-block-column {
        flex: 0 0 calc(50% - 0.4rem) !important;
        margin: 0 !important;
    }
    .sr-industries-grid + .sr-industries-grid {
        margin-top: 0.8rem !important;
    }
    .sr-industries-grid > .wp-block-column .sr-industry-card {
        padding: 0.5rem !important;
        margin: 0 !important;
    }
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 0 !important;
        display: none !important;
    }
    html { scrollbar-width: none !important; }
    body { -ms-overflow-style: none !important; overflow-x: hidden !important; }
}
/* Full-width sections + 2-col industries on mobile (match WP core 781px breakpoint) */
@media (max-width: 781px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: 100% !important;
    }
    main .alignwide {
        max-width: 100% !important;
    }
    main > .wp-block-group.alignfull {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .wp-site-blocks > header {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .sr-why-grid > .wp-block-column {
        padding: 0.75rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .sr-why-grid > .wp-block-column > * {
        margin: 0 !important;
    }
    .sr-why-grid > .wp-block-column > p:first-child {
        line-height: 1 !important;
        margin-bottom: 0.5rem !important;
    }
    .sr-why-grid > .wp-block-column > h3 {
        margin-bottom: 0.5rem !important;
    }
    main .sr-industries-grid > .wp-block-column {
        flex: 0 0 calc(50% - 0.4rem) !important;
        margin: 0 !important;
    }
    .sr-hero-text {
        padding-left: 0 !important;
    }
}
@media (max-width: 768px) and (orientation: portrait) {
    .sr-hero-split-inner {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 0.8rem 0;
        gap: 0;
    }
    .sr-hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
        color: #b0b0b0 !important;
        margin: 0 0 1rem !important;
        line-height: 1.6 !important;
        opacity: 0;
        animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    }
    .sr-hero-actions {
        justify-content: center;
        padding: 0.5rem;
    }
    .sr-hero-actions .sr-hero-btn {
        background: #1a1a1a !important;
        color: #fff !important;
        border: 1px solid var(--sr-gold) !important;
        padding: 0.9rem 2.2rem !important;
        border-radius: 8px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        display: inline-block;
        margin-top: 1.5rem;
    }
}
@media (max-width: 768px) and (orientation: landscape) {
    .sr-hero-split-inner {
        flex-direction: row;
        min-height: calc(100vh - 80px);
        padding: 2rem 2rem 0;
        gap: 3rem;
    }
    .sr-hero-text {
        max-width: 560px;
        text-align: left;
        padding-bottom: 0;
    }
    .sr-hero-actions {
        justify-content: flex-start;
    }
    .sr-hero-visual {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 60%;
        height: auto;
        min-height: auto;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: -20px 0 60px rgba(0,0,0,0.3);
        -webkit-mask-image: none;
        mask-image: none;
    }
    .sr-hero-visual::after {
        display: block;
    }
    .sr-hero-text::before,
    .sr-hero-text::after {
        display: block !important;
    }
}

/* ----- HERO BOTTOM FADE ----- */
/* ----- HERO TEXT ANIMATIONS ----- */
.wp-block-cover h1 {
    animation: floatUp 1s ease !important;
}

.wp-block-cover p {
    animation: floatUpDelay 1.2s ease both !important;
}

.wp-block-cover .wp-block-buttons {
    animation: floatUpDelay 1.4s ease both !important;
}

/* ----- SECTION BACKGROUND MESH GRADIENTS ----- */

/* Stats section — animated mesh */
.wp-block-group.alignfull.has-base-background-color {
    position: relative;
    isolation: isolate;
}

.wp-block-group.alignfull.has-base-background-color::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(240, 188, 48, 0.04), transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 70%, rgba(255, 255, 255, 0.03), transparent 70%);
    animation: blobFloat 18s ease-in-out infinite;
}

/* Why SR Enterprise / base-2 section — mesh gradient */
.wp-block-group.alignfull.has-base-2-background-color {
    position: relative;
    isolation: isolate;
}

.wp-block-group.alignfull.has-base-2-background-color::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 500px 400px at 70% 20%, rgba(240, 188, 48, 0.04), transparent 70%),
        radial-gradient(ellipse 600px 500px at 20% 80%, rgba(0, 0, 0, 0.02), transparent 70%);
    animation: drift 15s ease-in-out infinite;
}

/* Industries section — grid pattern overlay */
.wp-block-group.alignfull:not(.has-base-background-color):not(.has-base-2-background-color):nth-of-type(4) {
    position: relative;
    isolation: isolate;
}

.wp-block-group.alignfull:not(.has-base-background-color):not(.has-base-2-background-color):nth-of-type(4)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(240, 188, 48, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 188, 48, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: drift 20s linear infinite;
}

/* Quality section — subtle animated gradient */
.wp-block-group.alignfull.has-base-2-background-color:nth-of-type(3)::before {
    background:
        radial-gradient(ellipse 550px 450px at 30% 50%, rgba(240, 188, 48, 0.05), transparent 70%),
        radial-gradient(ellipse 400px 400px at 70% 50%, rgba(240, 188, 48, 0.03), transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
}

/* ----- FEATURED PRODUCTS SECTION GLOW ----- */
.wp-block-group.alignfull:nth-of-type(5) {
    position: relative;
    isolation: isolate;
}

.wp-block-group.alignfull:nth-of-type(5)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 700px 300px at 50% 0%, rgba(240, 188, 48, 0.07), transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

/* ----- PRODUCT CARDS — GLASSMORPHISM + 3D HOVER ----- */
.wp-block-columns .wp-block-column figure {
    border-radius: 12px;
    height: 340px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.wp-block-columns .wp-block-column figure::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(240, 188, 48, 0.1);
    pointer-events: none;
    transition: border-color 0.5s ease;
}

.wp-block-columns .wp-block-column figure:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(240, 188, 48, 0.08);
}

.wp-block-columns .wp-block-column figure:hover::after {
    border-color: rgba(240, 188, 48, 0.3);
}

.wp-block-columns .wp-block-column figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.wp-block-columns .wp-block-column figure:hover img {
    transform: scale(1.1);
}

/* Image shimmer on hover */
.wp-block-columns .wp-block-column figure::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wp-block-columns .wp-block-column figure:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Product card body */
.wp-block-columns .wp-block-column h3 {
    transition: all 0.3s ease;
}

.wp-block-columns .wp-block-column h3 a:hover {
    background: linear-gradient(135deg, var(--sr-gold), var(--sr-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- GLASSMORPHISM — Why SR Enterprise Cards ----- */
.has-base-2-background-color .wp-block-column {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 188, 48, 0.08);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.has-base-2-background-color .wp-block-column:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(240, 188, 48, 0.06) !important;
    border-color: rgba(240, 188, 48, 0.25);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(240, 188, 48, 0.05);
}

.has-base-2-background-color .wp-block-column h3 {
    position: relative;
}

.has-base-2-background-color .wp-block-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sr-gold);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.has-base-2-background-color .wp-block-column:hover h3::after {
    width: 60px;
}

/* ===== DESKTOP COLUMN LAYOUTS ===== */
/* Sections below hero — 80% width, full backgrounds */
@media (min-width: 782px) {
    main .alignwide {
        max-width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .wp-block-columns {
        gap: 1.5rem !important;
    }
}

/* Footer — 80% width + 3-col */
footer .alignwide {
    max-width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
footer .alignwide > .wp-block-group {
    flex: 1 0 30%;
    min-width: 200px;
}

/* Gap controls spacing between cards uniformly */
.sr-why-grid,
.sr-products-grid,
.sr-commitment-grid {
    gap: 1.5rem;
}
.sr-industries-grid {
    gap: 1.5rem;
    align-items: stretch !important;
}
main .sr-industries-grid,
.wp-block-columns.sr-industries-grid {
    flex-wrap: wrap !important;
}
@media (min-width: 769px) {
    main .sr-industries-grid > .wp-block-column {
        flex: 0 0 calc(33.333% - 1rem) !important;
        margin: 0 !important;
    }
}
/* Default: 100% width */
main .sr-industries-grid {
    max-width: 100% !important;
}

/* Desktop: 80% width */
@media (min-width: 1025px) {
    main .sr-industries-grid {
        max-width: 80% !important;
    }
}

/* Tablet: 90% width, 3 columns */
@media (min-width: 768px) and (max-width: 1024px) {
    main .sr-industries-grid {
        max-width: 90% !important;
    }
    main .sr-industries-grid > .wp-block-column {
        flex: 0 0 calc(33.333% - 1rem) !important;
    }
}

/* Mobile landscape: 3 columns */
@media (max-width: 767px) and (orientation: landscape) {
    main .sr-industries-grid > .wp-block-column {
        flex: 0 0 calc(33.333% - 1rem) !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

/* Mobile portrait: 2 columns */
@media (max-width: 767px) and (orientation: portrait) {
    main .sr-industries-grid > .wp-block-column {
        flex: 0 0 calc(50% - 0.75rem) !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

/* ----- INDUSTRIES CARDS ----- */
.sr-industry-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(240, 188, 48, 0.08);
    border-radius: 14px;
    padding: 1rem;
    margin: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    isolation: isolate;
    height: 100%;
    box-sizing: border-box;
}

.sr-industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        transparent,
        transparent 30%,
        rgba(240, 188, 48, 0.12) 50%,
        transparent 70%,
        transparent
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sr-industry-card:hover::before {
    opacity: 1;
    animation: gradientShift 3s ease infinite;
}

.sr-industry-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(240, 188, 48, 0.25);
    background: rgba(240, 188, 48, 0.06);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(240, 188, 48, 0.05);
}

.sr-industry-card p:first-child i {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.sr-industry-card:hover p:first-child i {
    transform: scale(1.25) rotate(-5deg);
    color: var(--sr-gold-light) !important;
}

.sr-industry-card h3 {
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
    position: relative;
    display: inline-block;
}

.sr-industry-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sr-gold);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.sr-industry-card:hover h3::after {
    width: 40px;
}

body.light-mode .sr-industry-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .sr-industry-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(240, 188, 48, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 40px rgba(240, 188, 48, 0.04);
}

/* ----- CTA SECTION — ANIMATED BACKGROUND ----- */
.wp-block-group.alignfull.has-base-background-color.has-accent-color h2 {
    position: relative;
    display: block;
    text-align: center;
}

.wp-block-group.alignfull.has-base-background-color .wp-block-buttons .wp-block-button {
    position: relative;
    overflow: hidden;
}

/* ----- MODERN BUTTONS ----- */
.wp-block-button__link {
    position: relative;
    isolation: isolate;
    border: none !important;
}

.has-accent-background-color .wp-block-button__link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--sr-gold-light), var(--sr-gold), var(--sr-gold-dark));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.has-accent-background-color .wp-block-button__link:hover::before {
    opacity: 1;
}

.has-base-background-color .wp-block-button__link {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.has-base-background-color .wp-block-button__link:hover {
    background: rgba(240, 188, 48, 0.1) !important;
    border-color: rgba(240, 188, 48, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 188, 48, 0.15);
}

/* View All Products button */
.has-accent-background-color.has-base-color {
    position: relative;
    overflow: hidden;
}

.has-accent-background-color.has-base-color .wp-block-button__link::before {
    display: none;
}

.has-accent-background-color.has-base-color .wp-block-button__link {
    background: linear-gradient(135deg, var(--sr-gold), var(--sr-gold-dark)) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 4s ease infinite;
}

.has-accent-background-color.has-base-color .wp-block-button__link:hover {
    background: linear-gradient(135deg, var(--sr-gold-light), var(--sr-gold)) !important;
    background-size: 200% 200% !important;
    box-shadow: 0 8px 40px rgba(240, 188, 48, 0.35);
    transform: translateY(-3px);
}

/* Buttons missing hover effects — ensure every button has one */
.has-contrast-background-color .wp-block-button__link:hover {
    background: var(--sr-gold) !important;
    color: var(--sr-dark) !important;
    border-color: var(--sr-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 188, 48, 0.25);
}
body.light-mode .has-contrast-background-color .wp-block-button__link:hover {
    background: var(--sr-gold) !important;
    color: #fff !important;
}
/* View Details buttons — plain wp-block-button__link */
.wp-block-button .wp-element-button:hover {
    background: var(--sr-gold) !important;
    color: var(--sr-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 188, 48, 0.3);
}

/* ----- SEPARATOR ENHANCEMENT ----- */
.wp-block-separator {
    height: 1px !important;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* ----- STATS SECTION — COUNT UP STYLE ----- */
.alignfull.has-base-background-color > .alignwide.wp-block-columns > .wp-block-column h2 {
    background: linear-gradient(135deg, var(--sr-gold) 0%, #ffffff 50%, var(--sr-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

/* ----- HEADER — GLASSMORPHISM ENHANCEMENT ----- */
.wp-site-blocks > header {
    backdrop-filter: blur(24px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.2) !important;
    background: rgba(10, 10, 10, 0.75) !important;
    border-bottom: 1px solid rgba(240, 188, 48, 0.12) !important;
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.2);
}

/* ----- FOOTER — TOP GRADIENT LINE ANIMATION ----- */
.wp-site-blocks > footer::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--sr-gold) 20%,
        var(--sr-gold-light) 50%,
        var(--sr-gold) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
    height: 2px;
}

/* ====================================================
   LIGHT MODE OVERRIDES for new effects
   ==================================================== */
body.light-mode .wp-block-group.alignfull.has-base-background-color::before {
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(240, 188, 48, 0.06), transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 70%, rgba(0, 0, 0, 0.02), transparent 70%);
}

body.light-mode .wp-block-group.alignfull.has-base-2-background-color::before {
    background:
        radial-gradient(ellipse 500px 400px at 70% 20%, rgba(240, 188, 48, 0.06), transparent 70%),
        radial-gradient(ellipse 600px 500px at 20% 80%, rgba(0, 0, 0, 0.02), transparent 70%);
}

body.light-mode .wp-block-columns .wp-block-column figure {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

body.light-mode .wp-block-columns .wp-block-column figure:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(240, 188, 48, 0.06);
}

body.light-mode .has-base-2-background-color .wp-block-column {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-mode .has-base-2-background-color .wp-block-column:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(240, 188, 48, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 40px rgba(240, 188, 48, 0.04);
}

body.light-mode .wp-block-cover::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(245, 245, 245, 0.85) 25%,
        rgba(240, 188, 48, 0.1) 50%,
        rgba(245, 245, 245, 0.85) 75%,
        rgba(255, 255, 255, 0.95) 100%
    ) !important;
    background-size: 400% 400% !important;
    animation: gradientShift 15s ease infinite !important;
}

body.light-mode .wp-site-blocks > header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(24px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.2) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.04);
}

body.light-mode .wp-block-group.alignfull:nth-of-type(5)::before {
    background:
        radial-gradient(ellipse 700px 300px at 50% 0%, rgba(240, 188, 48, 0.08), transparent 70%);
}

body.light-mode .has-base-background-color .wp-block-button__link {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .wp-block-cover::after {
    background:
        radial-gradient(circle 120px at 15% 85%, rgba(240, 188, 48, 0.1), transparent 70%),
        radial-gradient(circle 180px at 80% 20%, rgba(240, 188, 48, 0.08), transparent 70%),
        radial-gradient(circle 100px at 50% 50%, rgba(0, 0, 0, 0.02), transparent 70%);
}

/* ===== DARK MODE FIXES — base-2 sections ===== */
body:not(.light-mode) .has-base-2-background-color {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%) !important;
}

body:not(.light-mode) .has-base-2-background-color h2,
body:not(.light-mode) .has-base-2-background-color h3,
body:not(.light-mode) .has-base-2-background-color p,
body:not(.light-mode) .has-base-2-background-color li {
    color: #e0e0e0 !important;
}

body:not(.light-mode) .has-base-2-background-color .has-contrast-2-color {
    color: #b0b0b0 !important;
}

body:not(.light-mode) .has-base-2-background-color .wp-block-heading {
    color: #ffffff !important;
}

/* ====================================================
   CONTACT FORM STYLES
   ==================================================== */
.sr-contact-form {
    width: 100%;
}

.sr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
}

.sr-form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.sr-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--wp--preset--color--contrast-2);
    transition: color 0.3s ease;
}

.sr-required {
    color: var(--sr-gold);
}

.sr-form-group input,
.sr-form-group select,
.sr-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: var(--wp--preset--color--contrast);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(240, 188, 48, 0.12);
    border-radius: 8px;
    outline: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-sizing: border-box;
}

.sr-form-group input:hover,
.sr-form-group select:hover,
.sr-form-group textarea:hover {
    border-color: rgba(240, 188, 48, 0.25);
}

.sr-form-group input:focus,
.sr-form-group select:focus,
.sr-form-group textarea:focus {
    border-color: var(--sr-gold);
    background: rgba(240, 188, 48, 0.03);
    box-shadow: 0 0 0 3px rgba(240, 188, 48, 0.08);
}

.sr-form-group input.error,
.sr-form-group select.error,
.sr-form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.sr-form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.sr-form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0bc30' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.sr-form-group select option {
    background: #1a1a1a;
    color: #e0e0e0;
}

.sr-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--sr-gold), var(--sr-gold-dark));
    background-size: 200% 200%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.sr-submit-btn:hover {
    background: linear-gradient(135deg, var(--sr-gold-light), var(--sr-gold));
    background-size: 200% 200%;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 188, 48, 0.3);
}

.sr-submit-btn:active {
    transform: translateY(0);
}

.sr-submit-btn .sr-btn-icon {
    transition: transform 0.3s ease;
}

.sr-submit-btn:hover .sr-btn-icon {
    transform: translateX(4px);
}

.sr-form-message {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sr-form-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.sr-form-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.sr-form-success i,
.sr-form-error i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Light mode overrides */
body.light-mode .sr-form-group input,
body.light-mode .sr-form-group select,
body.light-mode .sr-form-group textarea {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

body.light-mode .sr-form-group input:focus,
body.light-mode .sr-form-group select:focus,
body.light-mode .sr-form-group textarea:focus {
    background: rgba(240, 188, 48, 0.03);
    border-color: var(--sr-gold);
    box-shadow: 0 0 0 3px rgba(240, 188, 48, 0.12);
}

body.light-mode .sr-form-group select option {
    background: #ffffff;
    color: #1a1a1a;
}

body.light-mode .sr-form-group label {
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .sr-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
