/* Glass Morphism Core Styles */
:root {
    --glass-gold: #FFD700;
    --glass-dark: #1A1A1A;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-gradient: linear-gradient(120deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-blur: blur(10px);
    
    /* Brand gold colors for consistent shine effect */
    --brand-gold: #FFB700;
    --brand-gold-bright: #FFC533;
    --brand-gold-deep: #FF9D00;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--glass-dark), #2a2a2a);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Navigation Styles */
.nav-glass {
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: none;
    height: 80px !important;
    display: flex;
    align-items: center;
}

.nav-glass .container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.nav-glass.scrolled {
    background: rgba(17, 25, 40, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    height: 70px !important;
}

/* Logo wrapper for horizontal layout */
.nav-glass .logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

/* Logo sizing consistency with !important override */
.nav-glass .logo-wrapper img {
    height: 48px !important;
    width: auto !important;
    max-height: 48px !important;
    object-fit: contain !important;
    transition: all 0.3s ease;
}

/* Improved Book a Call Button Styling */
.book-call-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #1a1a1a !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    border: none !important;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.book-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.book-call-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4) !important;
    background: linear-gradient(135deg, #FFF200, #FFD700) !important;
    color: #1a1a1a !important;
}

.book-call-btn:hover::before {
    left: 100%;
}

.book-call-btn:active {
    transform: translateY(0) scale(1.02) !important;
}

/* Section spacing consistency - standardize to match homepage */
.section-spacing-fix {
    padding-top: 5rem !important; /* py-20 equivalent */
    padding-bottom: 5rem !important;
}

.section-spacing-fix h2 {
    margin-bottom: 3rem !important; /* mb-12 equivalent to match homepage */
}

/* Fix footer button positioning and spacing */
footer .book-call-btn {
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4) !important;
    border: 2px solid rgba(255, 215, 0, 0.3) !important;
    animation: subtle-pulse 2s ease-in-out infinite !important;
}

footer .book-call-btn:hover {
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.6) !important;
    transform: translateY(-3px) scale(1.08) !important;
    border: 2px solid rgba(255, 215, 0, 0.6) !important;
}

/* Subtle pulse animation for footer book call button */
@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
        border: 2px solid rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
        border: 2px solid rgba(255, 215, 0, 0.4);
    }
}

/* Footer improvements - better spacing for button container */
footer .mt-8 {
    margin-top: 3rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid rgba(255, 215, 0, 0.1) !important;
}

/* Performance Improvements */
* {
    box-sizing: border-box;
}

/* Optimize animations for performance */
.premium-card,
.glass,
.orb,
.btn-glass {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .orb {
        animation: none !important;
    }
    
    .floating-particles {
        animation: none !important;
    }
    
    .light-beam {
        animation: none !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Reduce complex effects on mobile for better performance */
    .premium-card {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
    }
    
    /* Optimize book call button on mobile */
    footer .book-call-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Better spacing on mobile */
    .section-spacing-fix {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .section-spacing-fix h2 {
        margin-bottom: 2rem !important;
    }
    
    /* Optimize orb effects ONLY on mobile */
    .orb {
        opacity: 0.3 !important;
        filter: blur(20px) !important;
    }
}

/* Desktop orb styles - restore full visibility */
@media (min-width: 769px) {
    .orb {
        opacity: 0.45 !important;
        filter: blur(60px) !important;
    }
}

/* General section spacing improvements */
.section-dark {
    margin-bottom: 0 !important;
}

/* Ensure proper spacing between sections */
section + section {
    margin-top: 0 !important;
}

/* Consistent header spacing across all pages */
h2.text-4xl,
h2.text-5xl {
    margin-bottom: 3rem !important; /* Matches homepage mb-12 */
}

/* Additional spacing fixes for premium cards */
.glass-grid .premium-card {
    margin-bottom: 0 !important;
}

.glass-grid {
    margin-bottom: 0 !important;
}

/* Improve spacing around hero sections */
.hero-glass {
    margin-bottom: 0 !important;
}

.hero-glass + section {
    margin-top: 0 !important;
    padding-top: 6rem !important; /* Add extra top padding after hero */
}

/* Better visual separation between major content blocks */
.glass-grid + .glass-grid {
    margin-top: 3rem !important;
}

/* Consistent grid spacing */
.grid.gap-8,
.grid.gap-12 {
    row-gap: 2.5rem !important; /* Consistent row spacing */
}

/* Improve section readability with better spacing */
.container.mx-auto {
    position: relative;
}

.container.mx-auto:not(.hero-section) {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.nav-glass .logo-wrapper span {
    margin-left: 12px !important;
    transition: all 0.3s ease;
    font-size: 1.5rem !important; /* Consistent text size */
    line-height: 1 !important;
}

.nav-glass.scrolled .logo-wrapper img {
    height: 40px !important;
    max-height: 40px !important;
}

.nav-glass.scrolled .logo-wrapper span {
    font-size: 1.25rem !important;
}

/* Navigation link consistent spacing */
.nav-glass .nav-link {
    height: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 1rem !important;
    position: relative !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
    margin: 0 !important;
}

/* Ensure space-x-8 works consistently */
.nav-glass [class*="space-x-"] > * + * {
    margin-left: 2rem !important; /* 32px = space-x-8 */
}

/* Contact button spacing fix */
.nav-glass .btn-glass {
    margin-left: 2rem !important;
}

/* Logo and brand styling */
.text-brand-gold,
.nav-glass .text-brand-gold {
    color: var(--brand-gold) !important;
    text-shadow: 0 0 15px rgba(255, 183, 0, 0.4),
                 0 0 30px rgba(255, 157, 0, 0.2) !important;
    background: linear-gradient(135deg, var(--brand-gold-bright), var(--brand-gold-deep)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.btn-glass {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    color: #000000 !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.2);
    text-decoration: none;
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #000000 !important;
}

.btn-glass-mobile {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    color: #000000 !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.2);
    text-decoration: none;
}

.btn-glass-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #000000 !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%);
    animation: rotate 20s linear infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 80% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 70% 90%, rgba(255, 215, 0, 0.05) 0%, transparent 8%);
    animation: float 15s ease-in-out infinite;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, white, var(--glass-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--glass-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.glass-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-link:hover::before,
.glass-link.active::before {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, white, var(--glass-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 20%; left: 10%; animation-delay: 0s; }
.card-2 { top: 40%; right: 10%; animation-delay: -2s; }
.card-3 { bottom: 20%; left: 50%; animation-delay: -4s; }

.floating-card i {
    color: var(--glass-gold);
    font-size: 1.5rem;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--glass-gold);
    color: var(--glass-dark);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: var(--glass-border);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Service Cards */
.services-grid, .glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.service-card, .premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.premium-card {
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.premium-card::before,
.premium-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.premium-card::before {
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 215, 0, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card::after {
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 215, 0, 0.4),
        transparent 40%
    );
    opacity: 0;
    mix-blend-mode: overlay;
    transition: opacity 0.4s ease;
}

.premium-card:hover::before,
.premium-card:hover::after {
    opacity: var(--mouse-intensity, 0);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: var(--glass-gold);
    font-size: 1.5rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--glass-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Footer */
.glass-footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: var(--glass-border);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--glass-gold);
    margin-bottom: 1.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--glass-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--glass-gradient);
    color: var(--glass-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: fadeInUp 0.8s ease-out 2s both;
}

.fab-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-bright));
    border: none;
    color: #1a1a1a;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.fab-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 183, 0, 0.6);
    background: linear-gradient(135deg, var(--brand-gold-bright), var(--brand-gold-deep));
}

.fab-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.fab-text {
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pulse animation for FAB */
.fab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 183, 0, 0.3);
    animation: pulseRing 2s infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Hero Button Styles */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-glass:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Book Call Button Specific Styling */
.book-call-btn {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-bright)) !important;
    color: #1a1a1a !important;
    border: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-call-btn:hover {
    background: linear-gradient(135deg, var(--brand-gold-bright), var(--brand-gold-deep)) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 183, 0, 0.5) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-action-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .fab-text {
        font-size: 0.5rem;
    }
}
