/* ===================================
   BH Peças - Design System & Styles
   Premium Navy + Gold Identity
   =================================== */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --navy-900: #060D1F;
    --navy-800: #0A1628;
    --navy-700: #0F1F3A;
    --navy-600: #162A4D;
    --navy-500: #1E3A6E;
    --navy-400: #2952A0;
    --navy-300: #4A7BD4;
    --navy-200: #7FA8E8;
    --navy-100: #B5D0F5;

    /* Gold Accent */
    --gold-500: #C9A84C;
    --gold-400: #D4B860;
    --gold-300: #E0C97A;
    --gold-200: #ECD89A;
    --gold-100: #F5E8BE;
    --gold-600: #B08E30;
    --gold-700: #8E721E;
    --gold-gradient: linear-gradient(135deg, #C9A84C, #E0C97A, #C9A84C);

    /* Blue Accent */
    --blue-500: #2A7FFF;
    --blue-400: #4D9AFF;
    --blue-300: #7BB5FF;
    --blue-glow: rgba(42, 127, 255, 0.3);

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8F9FC;
    --gray-100: #EEF1F7;
    --gray-200: #D8DCE6;
    --gray-300: #B0B8C9;
    --gray-400: #8892A7;
    --gray-500: #636F85;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --gray-800: #1A202C;

    /* Semantic */
    --success: #25D366;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --danger: #EF4444;

    /* Backgrounds */
    --bg-primary: #F8F9FC;
    --bg-dark: var(--navy-800);
    --bg-card: var(--white);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(6, 13, 31, 0.06), 0 1px 2px rgba(6, 13, 31, 0.04);
    --shadow-md: 0 4px 6px rgba(6, 13, 31, 0.05), 0 2px 4px rgba(6, 13, 31, 0.03);
    --shadow-lg: 0 10px 40px rgba(6, 13, 31, 0.08), 0 4px 12px rgba(6, 13, 31, 0.04);
    --shadow-xl: 0 20px 60px rgba(6, 13, 31, 0.12), 0 8px 20px rgba(6, 13, 31, 0.06);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.2);
    --shadow-blue: 0 4px 30px rgba(42, 127, 255, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===================================
   Reset & Base
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    animation: preloaderFill 1.5s ease-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.938rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    padding: 14px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-600), var(--navy-700));
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(42, 127, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    transition: var(--transition-base);
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.accent-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: var(--white);
    background: rgba(201, 168, 76, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--gold-400);
    border-radius: var(--radius-full);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 31, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.3), transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

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

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    will-change: transform, opacity;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) translateX(100px); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 184, 96, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(212, 184, 96, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-title-accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.hero-stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
}

.hero-stat-label {
    display: block;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual - Animated SVG Logo */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.logo-animated-wrapper {
    position: relative;
    width: 460px;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: logoFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Background glows */
.logo-glow-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    background: radial-gradient(circle, rgba(42, 127, 255, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.logo-glow-bg-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
    animation-delay: -2s;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -55%) scale(1.15); opacity: 1; }
}

/* Electric particles */
.electric-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
}

.ep-1 {
    background: #C9A84C;
    top: 15%;
    left: 10%;
    box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.5);
    animation: epOrbit1 8s linear infinite;
}

.ep-2 {
    background: #4D9AFF;
    width: 3px;
    height: 3px;
    top: 80%;
    right: 15%;
    box-shadow: 0 0 8px 2px rgba(77, 154, 255, 0.5);
    animation: epOrbit2 10s linear infinite;
}

.ep-3 {
    background: white;
    width: 2px;
    height: 2px;
    top: 30%;
    right: 5%;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.4);
    animation: epOrbit3 12s linear infinite;
}

.ep-4 {
    background: #E0C97A;
    width: 3px;
    height: 3px;
    bottom: 25%;
    left: 8%;
    box-shadow: 0 0 8px 2px rgba(224, 201, 122, 0.5);
    animation: epOrbit4 9s linear infinite;
}

.ep-5 {
    background: #4D9AFF;
    width: 2px;
    height: 2px;
    top: 60%;
    right: 3%;
    box-shadow: 0 0 6px 2px rgba(77, 154, 255, 0.3);
    animation: epOrbit5 14s linear infinite;
}

.ep-6 {
    background: white;
    width: 3px;
    height: 3px;
    top: 10%;
    right: 30%;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.3);
    animation: epOrbit6 11s linear infinite;
}

@keyframes epOrbit1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translate(60px, 40px) scale(0.6); }
    90% { opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0; }
}

@keyframes epOrbit2 {
    0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
    15% { opacity: 1; }
    50% { transform: translate(-50px, -30px) scale(1.2); }
    85% { opacity: 1; }
    100% { transform: translate(0, 0) scale(0.5); opacity: 0; }
}

@keyframes epOrbit3 {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 0.8; }
    50% { transform: translate(-40px, 50px); }
    80% { opacity: 0.8; }
    100% { transform: translate(0, 0); opacity: 0; }
}

@keyframes epOrbit4 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    15% { opacity: 1; }
    50% { transform: translate(45px, -35px) scale(0.7); }
    85% { opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0; }
}

@keyframes epOrbit5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    25% { opacity: 0.6; transform: translate(-20px, -20px); }
    50% { transform: translate(-35px, 10px); }
    75% { opacity: 0.6; transform: translate(-10px, 25px); }
}

@keyframes epOrbit6 {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 0.7; }
    50% { transform: translate(30px, 60px); }
    80% { opacity: 0.7; }
}

/* Main SVG Logo */
.logo-svg-main {
    width: 420px;
    height: 420px;
    position: relative;
    z-index: 2;
}

/* Letter stroke draw animation */
.letter-stroke {
    animation: strokeDraw 2.2s ease-out 0.5s forwards;
}

@keyframes strokeDraw {
    to { stroke-dashoffset: 0; }
}

/* Letter fill fade in after stroke completes */
.letter-fill {
    animation: letterFillIn 0.8s ease-out 2.2s forwards;
}

@keyframes letterFillIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Once filled, add subtle glow pulse */
.bh-logo-group {
    filter: none;
    animation: logoGroupGlow 4s ease-in-out 3s infinite;
}

@keyframes logoGroupGlow {
    0%, 100% { opacity: 0.92; }
    50% { opacity: 1; }
}

/* PEÇAS text animation */
.pecas-text {
    animation: pecasFadeIn 0.8s ease-out 2.8s forwards;
}

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

/* Decorative underline */
.underline-deco {
    animation: underlineDraw 0.6s ease-out 3.2s forwards;
}

@keyframes underlineDraw {
    to { stroke-dashoffset: 0; opacity: 0.6; }
}

/* Subtitle */
.subtitle-text {
    animation: subtitleFadeIn 0.8s ease-out 3.4s forwards;
}

@keyframes subtitleFadeIn {
    to { opacity: 1; }
}

/* Electric sparks */
.spark {
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.spark-1 {
    animation-name: sparkFlash;
    animation-delay: 2.8s;
}

.spark-2 {
    animation-name: sparkFlash;
    animation-delay: 3.5s;
    animation-duration: 2.5s;
}

.spark-3 {
    animation-name: sparkFlash;
    animation-delay: 3.1s;
    animation-duration: 3.5s;
}

.spark-4 {
    animation-name: sparkFlash;
    animation-delay: 4s;
    animation-duration: 2.8s;
}

.spark-5 {
    animation-name: sparkFlash;
    animation-delay: 3.8s;
    animation-duration: 4s;
}

@keyframes sparkFlash {
    0%, 100% { opacity: 0; r: 1; }
    10% { opacity: 1; r: 2.5; }
    15% { opacity: 0; r: 1; }
    20% { opacity: 0.8; r: 2; }
    30% { opacity: 0; r: 1; }
    50% { opacity: 0; }
}

/* Orbit rings */
.orbit-ring {
    animation: orbitFadeIn 1.5s ease-out 1.5s both;
}

.orbit-ring-inner {
    animation: orbitFadeIn 1.5s ease-out 1.8s both;
}

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

/* Logo tagline */
.logo-tagline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: -20px;
    opacity: 0;
    animation: taglineFadeIn 0.8s ease-out 3.6s forwards;
}

.tagline-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.tagline-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    animation: taglineLineExpand 0.6s ease-out 3.8s both;
}

@keyframes taglineFadeIn {
    to { opacity: 1; }
}

@keyframes taglineLineExpand {
    from { width: 0; opacity: 0; }
    to { width: 40px; opacity: 1; }
}

.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave-bottom svg {
    width: 100%;
    height: 120px;
}

/* ===================================
   Section Headers
   =================================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--gold-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--gold-300);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.063rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}


/* Calculator Expandable Container */
.calc-expandable-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-in-out, margin-top 0.5s ease;
    opacity: 0;
    margin-top: 0;
    border-radius: var(--radius-lg);
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
}

.calc-expandable-container.active {
    max-height: 8000px;
    opacity: 1;
    margin-top: 2rem;
    border-color: var(--border-color);
}

/* Hide modal styles since we deleted it */

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.04), rgba(10, 22, 40, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy-600);
    transition: var(--transition-base);
}

.about-card:hover .about-card-icon {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color: var(--white);
    transform: scale(1.05);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 10px;
}

.about-card-text {
    font-size: 0.938rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: var(--gray-50);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-featured {
    background: linear-gradient(165deg, var(--navy-800), var(--navy-700));
    border-color: rgba(201, 168, 76, 0.15);
    color: var(--white);
}

.service-card-featured:hover {
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
}

.service-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.1), transparent);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    pointer-events: none;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold-500);
    transition: var(--transition-base);
}

.service-card-featured .service-icon-wrapper {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-300);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.08) rotate(-3deg);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.313rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.service-card-featured .service-card-title {
    color: var(--white);
}

.service-card-text {
    font-size: 0.938rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card-featured .service-card-text {
    color: rgba(255, 255, 255, 0.6);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-card-featured .service-features li {
    color: rgba(255, 255, 255, 0.7);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    flex-shrink: 0;
}

/* ===================================
   Brands Marquee
   =================================== */
.brands-section {
    padding: 40px 0;
    background: var(--navy-800);
    overflow: hidden;
    position: relative;
}

.brands-section::before,
.brands-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.brands-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy-800), transparent);
}

.brands-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy-800), transparent);
}

.brands-marquee {
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.brand-item {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-separator {
    color: var(--gold-400);
    opacity: 0.3;
    font-size: 0.75rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   Location Section
   =================================== */
.location-section {
    background: var(--bg-primary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.location-pin {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.location-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.location-card-address {
    font-size: 0.938rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(201, 168, 76, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.938rem;
    color: var(--navy-800);
    font-weight: 500;
}

.detail-link {
    font-size: 0.938rem;
    color: var(--navy-500);
    font-weight: 600;
    transition: var(--transition-fast);
}

.detail-link:hover {
    color: var(--gold-600);
}

.location-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.open {
    background: var(--success);
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}

.status-indicator.closed {
    background: var(--danger);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

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

.status-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.status-text.open {
    color: var(--success);
}

.status-text.closed {
    color: var(--danger);
}

/* Map */
.map-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(248, 249, 252, 0.3));
    pointer-events: none;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(165deg, var(--navy-900), var(--navy-800));
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent);
    top: -100px;
    right: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.08), transparent);
    bottom: -80px;
    left: -80px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.cta-phone svg {
    opacity: 0.5;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy-900);
    padding: 72px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link:hover {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-400);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a,
.footer-links li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--gold-300);
    transform: translateX(4px);
}

.footer-contact-links li {
    font-size: 0.813rem;
    line-height: 1.6;
}

.footer-contact-links svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-credit {
    font-weight: 500;
}

/* ===================================
   WhatsApp Float
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition-spring);
    animation: whatsappBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.813rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-base);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===================================
   Back to Top
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
    transform: translateY(-3px);
}

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

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .logo-animated-wrapper {
        width: 380px;
        height: 400px;
    }

    .logo-svg-main {
        width: 340px;
        height: 340px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-800);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 8px;
        transition: right var(--transition-base);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 14px 20px;
        width: 100%;
        text-align: left;
    }

    .btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        min-height: auto;
        padding: 140px 0 100px;
    }

    .hero-title-line {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .logo-animated-wrapper {
        width: 300px;
        height: 320px;
    }

    .logo-svg-main {
        width: 280px;
        height: 280px;
    }

    .logo-glow-bg {
        width: 220px;
        height: 220px;
    }

    .logo-glow-bg-2 {
        width: 180px;
        height: 180px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Support Routing Modal */
.support-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 20px;
}
.support-modal.active {
    opacity: 1;
    visibility: visible;
}
.support-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
}
.support-modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.support-modal.active .support-modal-content {
    transform: translateY(0) scale(1);
}
.support-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.support-modal-title {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
}
.support-modal-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}
.support-modal-close:hover {
    color: var(--gold-400);
}
.support-modal-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}
.support-modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.support-modal-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: left;
}
.support-modal-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.support-btn-icon {
    font-size: 2rem;
    background: rgba(255,255,255,0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.support-modal-btn:hover .support-btn-icon {
    background: rgba(201, 168, 76, 0.2);
}
.support-btn-text strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-display);
    margin-bottom: 5px;
}
.support-btn-text span {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
