/* Tailwind base, components, and utilities are imported via the build process */

/* Custom styles */
:root {
    --color-gold: #FFD700;
    --color-gold-dark: #FDB931;
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-gray-100: rgba(255, 255, 255, 0.1);
    --color-gray-200: rgba(255, 255, 255, 0.2);
    --color-gray-400: rgba(255, 255, 255, 0.4);
    --color-gray-600: rgba(255, 255, 255, 0.6);
    --color-gray-800: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 30px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 25px 30px rgba(0, 0, 0, 0.3);
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base styles for better performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default body margin and padding to eliminate white space at bottom */
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
}

/* Sticky footer layout: body as flex column, footer at bottom */
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}

/* Final white space fix: Remove all margin/padding from containers and footer */
.container, footer, body > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
footer {
  background: #1A1A1A !important;
  color: #fff !important;
  width: 100vw;
  position: relative;
}

/* Force footer to be fixed at the bottom of the viewport */
footer {
  position: fixed !important;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body {
  padding-bottom: 0 !important;
}

/* Hero section */
.hero-gradient {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.8));
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Typography enhancements */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Card Base Styles */
.card, .premium-card {
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Light Theme Cards */
.section-light .card, .section-light .premium-card {
    background: white;
    color: #1A1A1A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-light .card:hover, .section-light .premium-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.12);
}

/* Dark Theme Cards */
.section-dark .card, .section-dark .premium-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.section-dark .card:hover, .section-dark .premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: #FFD700;
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.3);
}

/* Card hover effect */
.card::before, .premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.05),
        transparent
    );
    transition: left 0.5s ease;
}

.card:hover::before, .premium-card:hover::before {
    left: 100%;
}

.service-card .rounded-full {
    transition: all 0.3s ease;
}

.service-card:hover .rounded-full {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Custom button styles */
.btn-primary {
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffd000;
    transform: scale(1.05);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5);
}

/* Ensure .btn-primary links always show pointer cursor */
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:focus {
  cursor: pointer !important;
}

/* Universal fix: Always show pointer cursor for .btn-primary and its children */
.btn-primary, .btn-primary *, a.btn-primary, a.btn-primary *, button.btn-primary, button.btn-primary * {
  cursor: pointer !important;
}

/* Accessibility: Ensure visible focus for all interactive elements */
button:focus, a:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #FFD700 !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(255,215,0,0.2);
}

/* Improve button color contrast for accessibility */
.btn-primary {
  background-color: #FFD700;
  color: #1A1A1A;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #FDB931;
  color: #1A1A1A;
}

/* Ensure contact form and main action buttons always show pointer cursor */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  cursor: pointer !important;
}

/* Ensure book-call-btn always shows pointer cursor */
.book-call-btn,
.book-call-btn:hover,
.book-call-btn:focus {
  cursor: pointer !important;
}

/* Mobile navigation styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 16rem;
    height: 100%;
    background-color: #1A1A1A;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Responsive image container */
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    padding-top: 66.67%; /* 3:2 aspect ratio */
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section spacing */
.section-spacing {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-spacing {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Testimonial and success stories distinctions */


.success-story-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.2);
}

/* Updated footer styles */
.footer {
    background: linear-gradient(
        to bottom,
        var(--color-black),
        rgba(26, 26, 26, 0.98)
    );
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.2)
    );
    pointer-events: none;
}

/* Footer grid layout */
.footer .grid {
    position: relative;
    z-index: 1;
}

.footer .grid > div {
    padding: 1rem;
    position: relative;
}

.footer .grid > div::after {
    content: '';
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    right: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
}

.footer .grid > div:last-child::after {
    display: none;
}

/* Footer headings */
.footer h3 {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--color-gold);
}

.footer h4 {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 1.5rem;
    height: 1px;
    background: var(--color-gold);
}

.footer p {
    color: var(--color-gray-600);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer p:hover {
    color: var(--color-gray-400);
}

.footer-link {
    color: var(--color-gray-600);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gray-200);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
}

.footer .social-icons a {
    color: var(--color-gray-600);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .social-icons a:hover {
    color: var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.footer .social-icons i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.footer .social-icons a:hover i {
    transform: scale(1.1);
}

/* Copyright section */
.footer .border-t {
    border-color: rgba(255, 215, 0, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    position: relative;
}

.footer .border-t::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
}

.footer .border-t p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
}

.footer .border-t p:hover {
    color: var(--color-gray-400);
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer .border-t {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
}

/* Loading optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Custom scrollbar - with fallback for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FFD700 #1A1A1A;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background-color: #FFD700;
    border-radius: 4px;
}

/* Enhanced form inputs */
.form-input {
    width: 100%;
    padding: 1rem;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Form group hover effects */
.form-group {
    position: relative;
    transition: transform 0.3s ease;
}

.form-group:focus-within {
    transform: translateX(5px);
}

/* Submit button gradient */
.submit-button {
    background: linear-gradient(45deg, #FFD700, #FDB931);
    color: #1A1A1A;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 215, 0, 0.4);
}

.submit-button:active {
    transform: translateY(1px);
}

/* Mobile responsiveness enhancements */
@media (max-width: 768px) {
    .why-choose-card {
        margin-bottom: 1.5rem;
    }

    .logo-wrapper {
        transform-origin: left;
        transform: scale(0.9);
    }

    .gold-text-gradient {
        background-size: 200% auto;
        animation: shimmer 2s linear infinite;
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Custom styles */
/* Process Icons and Elements */
.icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover .icon-container {
    transform: scale(1.1);
}

.section-dark .card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.section-light .card h3 {
    color: #1A1A1A;
    margin-bottom: 1rem;
}

/* Section Styles */
.section {
    position: relative;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    overflow: hidden;
}

/* Light Section */
.section-light {
    background: linear-gradient(
        to bottom,
        #ffffff,
        rgba(26, 26, 26, 0.02)
    );
    color: #1A1A1A;
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.03), transparent 50%),
        radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.03), transparent 50%);
    pointer-events: none;
}

.section-light::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.03), transparent);
    pointer-events: none;
    z-index: -1;
}

/* Dark Section */
.section-dark {
    background: linear-gradient(
        to bottom,
        var(--color-black),
        rgba(26, 26, 26, 0.98)
    );
    color: white;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 60%),
        linear-gradient(45deg, rgba(255, 215, 0, 0.02), transparent 70%);
    pointer-events: none;
}

/* Add subtle grid pattern to sections */
.section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* Section Divider */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

/* Section transitions and dividers */
section {
    position: relative;
    padding: 6rem 0;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    opacity: 0.5;
}

/* Enhanced section contrasts and black accents */
.section {
    position: relative;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.section-light {
    background: linear-gradient(
        to bottom,
        #ffffff,
        rgba(26, 26, 26, 0.02)
    );
}

.section-dark {
    background: linear-gradient(
        to bottom,
        var(--color-black),
        rgba(26, 26, 26, 0.98)
    );
    color: white;
}

/* Card enhancements */
.card {
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.05);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navigation enhancements */
.nav-sticky.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Button enhancements */
.btn-primary {
    background: linear-gradient(45deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

/* Form input enhancements */
.form-input {
    background: rgba(26, 26, 26, 0.02);
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.section-dark .form-input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.1);
    color: white;
}

/* Icon container enhancements */
.icon-container {
    background: var(--color-black);
    color: var(--color-gold);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.1);
}

.section-dark .icon-container {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
}

/* Team member image animations */
.founder-image {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.founder-image.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.founder-image img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure floating/modal elements do not affect page flow */
.calendly-modal,
.chat-widget,
.custom-cursor,
#exitIntentModal {
  position: fixed !important;
  z-index: 9999;
  pointer-events: auto;
}

/* Remove diagnostic styles that are breaking the site */
/* These were left from debugging and are causing issues */

/* Additional performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.content-visibility-auto {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Print styles for better PDF generation */
@media print {
    .animate-fade-up {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .why-choose-card,
    .service-card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .glass-effect {
        backdrop-filter: none;
        background: white;
        print-color-adjust: exact;
    }
}

/* Premium card light styles */
.premium-card-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    color: #1A1A1A;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.premium-card-light:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
}

/* Black accents and enhanced contrast */
.section-light {
    position: relative;
    z-index: 1;
}

.section-light::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.03), transparent);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced card contrast */
.section-light .card, .section-light .premium-card {
    border: 1px solid rgba(26, 26, 26, 0.1);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.95)
    );
}

.section-dark .card, .section-dark .premium-card {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95),
        rgba(26, 26, 26, 0.85)
    );
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Gold accents */
.gold-accent {
    position: relative;
}

.gold-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.gold-accent:hover::after {
    width: 100%;
}

/* ========== COMPREHENSIVE MOBILE OPTIMIZATION ========== */

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .nav-glass {
        height: 70px !important;
        padding: 0 1rem !important;
    }
    
    .nav-glass .logo-wrapper img {
        height: 36px !important;
    }
    
    .mobile-menu-button {
        padding: 0.5rem !important;
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 1.25rem !important;
        cursor: pointer !important;
        display: block !important;
    }
    
    .mobile-menu {
        background: rgba(26, 26, 26, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-link-mobile {
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: block !important;
        text-decoration: none !important;
        color: white !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-link-mobile:hover {
        background: rgba(255, 215, 0, 0.1) !important;
        color: #FFD700 !important;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 4rem !important;
        min-height: 90vh !important;
        text-align: center !important;
    }
    
    .hero-title,
    h1.text-6xl,
    h1.text-5xl {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .btn-glass {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        text-align: center !important;
    }
}

/* Grid Layouts Mobile */
@media (max-width: 768px) {
    .services-grid,
    .glass-grid,
    .grid,
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1rem !important;
    }
    
    .grid.md\\:grid-cols-2,
    .grid.md\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Card Components Mobile */
@media (max-width: 768px) {
    .premium-card,
    .glass,
    .service-card,
    .testimonial-card,
    .case-study-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 1rem !important;
    }
    
    .premium-card,
    .glass {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
    
    .premium-card:hover,
    .glass:hover {
        transform: translateY(-2px) !important;
    }
}

/* Typography Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    h2,
    .text-4xl {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    h3,
    .text-3xl {
        font-size: 1.5rem !important;
    }
    
    .text-6xl { font-size: 2.5rem !important; }
    .text-5xl { font-size: 2.25rem !important; }
    .text-2xl { font-size: 1.5rem !important; }
    .text-xl { font-size: 1.125rem !important; }
}

/* Spacing Mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-12,
    .py-16,
    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .gap-8,
    .gap-12 {
        gap: 1.5rem !important;
    }
}

/* Forms Mobile */
@media (max-width: 768px) {
    .contact-form,
    form {
        padding: 1.5rem !important;
    }
    
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents iOS zoom */
        padding: 1rem !important;
        border-radius: 0.5rem !important;
    }
    
    .submit-button {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1.1rem !important;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-section {
        margin-bottom: 2rem !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonial-filters {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .filter-btn {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr !important;
        padding: 1rem !important;
    }
}

/* Performance Mobile */
@media (max-width: 768px) {
    .orb {
        opacity: 0.2 !important;
        filter: blur(10px) !important;
    }
    
    .floating-card {
        display: none !important;
    }
    
    * {
        animation-duration: 0.3s !important;
    }
}

/* Safe Area iOS */
@media (max-width: 768px) {
    .nav-glass {
        padding-top: env(safe-area-inset-top) !important;
        height: calc(70px + env(safe-area-inset-top)) !important;
    }
    
    .hero-section {
        padding-top: calc(6rem + env(safe-area-inset-top)) !important;
    }
    
    footer {
        padding-bottom: env(safe-area-inset-bottom) !important;
    }
    
    .book-call-btn {
        bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
        right: calc(1rem + env(safe-area-inset-right)) !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .premium-card:hover,
    .glass:hover,
    .service-card:hover {
        transform: none !important;
    }
    
    .hover-lift:hover {
        transform: none !important;
    }
    
    a, button {
        min-height: 44px !important;
        min-width: 44px !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .premium-card,
    .glass {
        padding: 1rem !important;
    }
    
    .btn-glass {
        font-size: 0.9rem !important;
        padding: 0.75rem 1.25rem !important;
    }
}
