/* ============================================
   NAVBAR STYLES & ANIMATIONS
   ============================================ */

#navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
}

#navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
}

/* ====== LOGO STYLING (PREMIUM) ====== */
#logo {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    text-decoration: none !important;
    z-index: 51 !important;
    flex-wrap: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#logo:hover {
    opacity: 0.85 !important;
}

/* Force logo icon div visibility by overriding Tailwind classes */
#logo > div.w-10.h-10 {
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo Icon Box */
#logo > div:first-child {
    width: 44px !important;
    height: 44px !important;
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#logo:hover > div:first-child {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4) !important;
}

#logo .fa-scale-balanced {
    color: #fff !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Logo Text Container */
#logo > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    flex-shrink: 0 !important;
}

/* Logo Main Text */
#logo > div:last-child > div {
    font-size: 20px !important;
    font-weight: 900 !important;
    letter-spacing: 0.8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1 !important;
}

#logo > div:last-child > div span {
    display: inline-block !important;
    text-decoration: none !important;
}

#logo > div:last-child > div span:nth-child(1) {
    color: #d4af37 !important;
    font-style: italic !important;
}

#logo > div:last-child > div span:nth-child(2) {
    color: #003d7a !important;
}

#logo > div:last-child > div span:nth-child(3) {
    color: #d4af37 !important;
    font-style: italic !important;
}

#logo > div:last-child > div span:nth-child(4) {
    color: #003d7a !important;
}

/* Logo Tagline */
#logo > div:last-child > p {
    color: #d4af37 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ====== NAVIGATION LINKS (PREMIUM) ====== */
#navbar a {
    text-decoration: none !important;
}

.hidden.md\:flex a {
    color: #1a1a1a !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding-bottom: 2px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hidden.md\:flex a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #d4af37, #003d7a) !important;
    transition: width 0.3s ease !important;
}

.hidden.md\:flex a:hover::after {
    width: 100% !important;
}

.hidden.md\:flex a:hover {
    color: #003d7a !important;
    transform: translateY(-2px) !important;
}

/* ====== APPOINTMENT BUTTON (PREMIUM) ====== */
#navbar a[href="#contact"],
#mobileMenu a[href="#contact"] {
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    font-family: 'Poppins', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
}

#navbar a[href="#contact"]:hover,
#mobileMenu a[href="#contact"]:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.45) !important;
    background: linear-gradient(135deg, #fbbf24 0%, #d4af37 100%) !important;
}

#navbar a[href="#contact"]:active,
#mobileMenu a[href="#contact"]:active {
    transform: scale(0.98) !important;
}

#navbar a[href="#contact"] i,
#mobileMenu a[href="#contact"] i {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
}

#navbar a[href="#contact"]:hover i,
#mobileMenu a[href="#contact"]:hover i {
    transform: rotate(15deg) !important;
}

/* ====== MOBILE MENU ====== */
#mobileMenu {
    display: none !important;
}

#mobileMenu.active {
    display: flex !important;
}

#mobileMenu a {
    color: #1a1a1a !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-transform: capitalize !important;
}

/* ====== RESPONSIVE NAVBAR ====== */
@media (max-width: 768px) {
    #navbar {
        padding: 8px 0 !important;
    }

    #logo {
        gap: 10px !important;
    }

    #logo > div:first-child {
        width: 40px !important;
        height: 40px !important;
    }

    #logo .fa-scale-balanced {
        font-size: 18px !important;
    }

    #logo > div:last-child > div {
        font-size: 18px !important;
    }

    #navbar a[href="#contact"],
    #mobileMenu a[href="#contact"] {
        padding: 8px 16px !important;
        font-size: 13px !important;
        width: 100% !important;
    }
}

/* Navigation Links */

/* ====== MOBILE MENU BUTTON ====== */
#mobileMenuBtn {
    display: none !important;
    font-size: 28px !important;
    color: #003d7a !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    z-index: 52 !important;
}

#mobileMenuBtn:hover {
    color: #d4af37 !important;
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    #mobileMenuBtn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #1e40af;
}

.nav-link span {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.nav-link.active {
    color: #1e40af;
    font-weight: 600;
}

.nav-link.active span {
    transform: scaleX(1) !important;
}

/* Mobile Navigation Links */
.mobile-nav-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #d4af37, #fbbf24);
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before {
    transform: translateX(0);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(251, 191, 36, 0.1));
    border-left-color: #d4af37;
}

/* Mobile Menu Animation */
#mobileMenu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}

#mobileMenu.hidden {
    display: none !important;
}

/* CTA Button Hover */
a[href="#contact"] {
    position: relative;
    overflow: hidden;
}

a[href="#contact"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

a[href="#contact"]:hover::before {
    left: 100%;
}

/* ============================================
   CUSTOM ANIMATIONS & STYLES
   ============================================ */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fbbf24;
}

/* ============================================
   ANIMATION DEFINITIONS
   ============================================ */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide Up */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Down */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

/* Float */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(30, 64, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
    animation: slideDown 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2s infinite;
}

/* Transition utilities */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-smooth-lg {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
}

/* Text gradients */
.gradient-text {
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    min-height: 1.2em;
}

.gradient-text.typed-cursor {
    -webkit-text-fill-color: #d4af37;
}

/* Background gradients */
.gradient-bg-primary {
    background: linear-gradient(135deg, #003d7a 0%, #1e40af 100%);
}

.gradient-bg-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Card styles */
.card-modern {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.card-dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: white;
}

.card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/* Icon styles */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(251, 191, 36, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-size: 24px;
    color: #d4af37;
}

.icon-box:hover {
    background: linear-gradient(135deg, #d4af37, #fbbf24);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

/* Mobile first approach */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }

    .text-responsive {
        font-size: 20px;
    }

    .gap-responsive {
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .text-responsive {
        font-size: 32px;
    }

    .gap-responsive {
        gap: 24px;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    position: relative;
    overflow: hidden;
}

/* Background effects */
.section-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.section-with-bg > * {
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVBAR EFFECTS (Additional)
   ============================================ */

/* See navbar styles section above for main navbar styles */

/* ============================================
   HERO SECTION STYLES
   ============================================ */

#home {
    position: relative;
    overflow: hidden;
}

/* Hero Background Animations */
#home .animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Badge Styling */
.inline-flex.bg-accent-600 {
    animation: slideUp 0.8s ease-out;
}

.inline-flex.bg-accent-600:hover {
    background: rgba(212, 175, 55, 0.3) !important;
    border-color: rgba(212, 175, 55, 0.8) !important;
    transform: translateY(-3px);
}

/* Gradient Text (Typewriter) */
.gradient-text {
    min-height: 1.2em;
}

/* Hero Buttons */
.btn-primary, .btn-secondary {
    min-height: 48px;
}

.btn-primary:active, .btn-secondary:active {
    transform: scale(0.95);
}

/* Experience Badge */
.absolute.bg-accent-600 {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.absolute.bg-accent-600:hover {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

/* Certificate Badge */
.absolute.bg-white {
    box-shadow: 0 0 30px rgba(30, 64, 175, 0.4);
}

.absolute.bg-white:hover {
    box-shadow: 0 0 50px rgba(30, 64, 175, 0.6);
}

/* Profile Image Container */
.relative.w-64 {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.relative.w-64 .group {
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

/* Contact Info Section */
.border-t.border-white {
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

/* Trust Stats */
.grid.grid-cols-3 {
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.grid.grid-cols-3 > div:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* CTA Button Animations */
.btn-primary:hover i:last-child,
.btn-secondary:hover i {
    animation: slideRight 0.3s ease;
}

@keyframes slideRight {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Image Glow */
.group {
    perspective: 1000px;
}

.group:hover {
    transform: rotateY(2deg) rotateX(2deg);
}

/* Floating Animation Enhancement */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(5px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-25px) translateX(0px);
    }
}

/* Scroll Indicator Animation */
.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* ============================================
   HERO RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    #home {
        min-height: auto;
        padding-bottom: 3rem;
    }

    .relative.w-64 {
        max-width: 100%;
    }

    .gradient-text {
        font-size: 1.875rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .flex.flex-col.sm\\:flex-row {
        flex-direction: column;
    }

    .absolute.-bottom-6 {
        bottom: -30px;
        right: -30px;
    }

    .absolute.-top-6 {
        top: -30px;
        left: -30px;
    }
}

/* ============================================
   HERO DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    #home {
        background: linear-gradient(135deg, #003d7a 0%, #1e40af 50%, #0f172a 100%);
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATION
   ============================================ */

#home .absolute {
    will-change: transform;
}

/* ============================================
   HERO ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    #home * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   SERVICES SECTION STYLES
   ============================================ */

.service-card {
    perspective: 1000px;
}

.service-card .bg-white {
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.service-card:hover .bg-white {
    transform: translateY(-8px);
}

/* Service Card Icon Animation */
.service-card .w-16 {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-card:hover .w-16 {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Service Card Title */
.service-card h3 {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Service Card Link Animation */
.service-card a[href*="#"] {
    position: relative;
    display: inline-flex;
}

.service-card a[href*="#"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.service-card a[href*="#"]:hover::after {
    width: 100%;
}

/* Services Grid Responsive */
@media (max-width: 768px) {
    .service-card .p-8 {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }
}

/* Services Section CTA */
.services-cta {
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-cta:hover::before {
    opacity: 1;
}

/* CTA Button Enhancement */
.services-cta a {
    position: relative;
    z-index: 10;
}

.services-cta a:active {
    transform: scale(0.95) !important;
}

/* Icon Rotation on Hover */
@keyframes iconRotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.1);
    }
}

.service-card:hover .w-16 i {
    animation: iconRotate 0.6s ease-out;
}

/* Services Accessibility */
@media (prefers-reduced-motion: reduce) {
    .service-card .bg-white,
    .service-card .w-16,
    .service-card h3,
    .service-card a {
        transition: none !important;
        animation: none !important;
    }

    .service-card:hover .bg-white {
        transform: none;
    }

    .service-card:hover .w-16 {
        transform: none;
    }
}

/* Focus States for Keyboard Navigation */
.service-card:focus-within {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
    border-radius: 1rem;
}

.service-card a:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

input, textarea, select {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* Testimonial Card Styles */
.testimonial-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

/* Star Animation */
.testimonial-card .fa-star {
    transition: all 0.3s ease;
    animation: starPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes starPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.testimonial-card:hover .fa-star {
    transform: scale(1.1);
    color: #f59e0b;
}

/* Testimonial Avatar */
.testimonial-avatar {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotateY(10deg);
}

/* Carousel Navigation Buttons */
.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
    color: #003d7a;
    font-weight: bold;
    transition: all 0.3s ease;
}

.testimonial-swiper-button-prev:hover,
.testimonial-swiper-button-next:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.testimonial-swiper-button-prev:active,
.testimonial-swiper-button-next:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.testimonial-swiper-pagination {
    position: relative;
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #e5e7eb;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Testimonial Stat Boxes */
.testimonial-stat-box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-stat-box:hover::before {
    opacity: 0.3;
}

.testimonial-stat-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
}

.testimonial-stat-box > div:first-child {
    transition: all 0.3s ease;
}

.testimonial-stat-box:hover > div:first-child {
    transform: scale(1.1);
}

/* Swiper Container */
.testimonials-swiper {
    padding: 0 2rem;
    padding-bottom: 3rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
}

.testimonials-carousel-wrapper .swiper-button-prev::after,
.testimonials-carousel-wrapper .swiper-button-next::after {
    display: none;
}

/* Testimonials Accessibility */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .testimonial-avatar,
    .testimonial-swiper-button-prev,
    .testimonial-swiper-button-next,
    .testimonial-stat-box,
    .fa-star {
        animation: none !important;
        transition: none !important;
    }

    .testimonial-card:hover {
        transform: none !important;
    }

    .testimonial-stat-box:hover {
        transform: none !important;
    }
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem !important;
    }

    .testimonial-card p {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .testimonial-avatar {
        width: 3rem !important;
        height: 3rem !important;
        font-size: 0.875rem !important;
    }

    .testimonial-swiper-button-prev,
    .testimonial-swiper-button-next {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 0.75rem !important;
    }

    .testimonials-swiper {
        padding: 0 1rem !important;
    }

    .testimonials-carousel-wrapper .swiper-button-prev {
        left: -1.5rem !important;
    }

    .testimonials-carousel-wrapper .swiper-button-next {
        right: -1.5rem !important;
    }
}

/* Focus States */
.testimonial-card:focus-within {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
    border-radius: 1rem;
}

.testimonial-swiper-button-prev:focus-visible,
.testimonial-swiper-button-next:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* ============================================
   WHY CHOOSE US SECTION STYLES
   ============================================ */

/* Benefit Cards */
.benefit-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

/* Benefit Icon Animation */
.benefit-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3) !important;
}

.benefit-icon-animate {
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Benefit Card Hover Effect */
.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Learn More Link Animation */
.benefit-card .flex.items-center i {
    transition: all 0.3s ease;
}

.benefit-card:hover .flex.items-center i {
    transform: translateX(4px);
}

/* Why Us Stat Box */
.why-us-stat-box {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-us-stat-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-stat-box:hover::after {
    opacity: 0.3;
}

.why-us-stat-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
}

/* Hover Lift Effect */
.hover-lift-effect {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift-effect:hover {
    transform: translateY(-10px) !important;
}

/* Table Enhancements */
table tr {
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background-color: #f9fafb !important;
}

table tbody tr i.fa-check-circle {
    animation: checkPulse 0.6s ease-out;
}

@keyframes checkPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Why Choose Us Accessibility */
@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .benefit-icon,
    .why-us-stat-box,
    table tbody tr {
        animation: none !important;
        transition: none !important;
    }

    .benefit-card:hover {
        transform: none !important;
    }

    .why-us-stat-box:hover {
        transform: none !important;
    }
}

/* Why Choose Us Responsive */
@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem !important;
    }

    .benefit-card h3 {
        font-size: 1.125rem !important;
    }

    .benefit-card p {
        font-size: 0.875rem !important;
    }

    .benefit-icon {
        width: 3rem !important;
        height: 3rem !important;
    }

    .benefit-icon i {
        font-size: 1.5rem !important;
    }

    table {
        font-size: 0.875rem;
    }

    table th, table td {
        padding: 0.75rem !important;
    }
}

/* Focus States */
.benefit-card:focus-within {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
    border-radius: 0.75rem;
}

.why-us-stat-box:focus-within {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
}

/* ============================================
   LOADING & SKELETON
   ============================================ */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* ============================================
   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;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* ============================================
   ABOUT SECTION STYLES
   ============================================ */

/* About Image Container */
.about-image-container {
    perspective: 1000px;
}

.about-image-container img {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
    filter: brightness(1);
}

.about-image-container:hover img {
    filter: brightness(1.1);
    transform: scale(1.05) translateZ(20px);
}

/* Badge Float Animation */
.about-badge-float {
    animation: badgeFloat 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

/* Achievement Cards */
.achievement-card {
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card > * {
    position: relative;
    z-index: 1;
}

.achievement-card ul li {
    transition: all 0.3s ease;
}

.achievement-card:hover ul li {
    transform: translateX(4px);
}

/* Stat Items */
.stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.stat-item .counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.stat-item:hover {
    transform: scale(1.05);
}

/* About Section Icons */
.achievement-card .w-14 {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.achievement-card:hover .w-14 {
    transform: scale(1.1) rotateY(10deg);
}

/* Professional Values Section */
.achievement-card .h-12 {
    transition: all 0.3s ease;
}

.achievement-card:hover .h-12 {
    transform: scale(1.15);
}

/* About Accessibility */
@media (prefers-reduced-motion: reduce) {
    .about-image-container img,
    .about-badge-float,
    .achievement-card,
    .stat-item {
        animation: none !important;
        transition: none !important;
    }

    .about-image-container:hover img {
        filter: none;
        transform: none;
    }

    .achievement-card:hover {
        transform: none !important;
    }

    .stat-item:hover {
        transform: none;
    }
}

/* ============================================
   CONTACT SECTION STYLES & ANIMATIONS
   ============================================ */

/* Contact Info Boxes */
.contact-info-box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.contact-info-box:hover::before {
    left: 100%;
}

/* Form Group Styles */
.form-group {
    position: relative;
    animation: formGroupFadeIn 0.6s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

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

/* Form Inputs & Selects */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

/* Form Checkbox */
input[type="checkbox"] {
    transition: all 0.3s ease;
    cursor: pointer;
}

input[type="checkbox"]:hover {
    transform: scale(1.1);
}

input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Submit Button */
#contactForm button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#contactForm button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#contactForm button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

/* Form Success Message */
#formMessage {
    animation: messageSlideDown 0.4s ease-out;
}

@keyframes messageSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#formMessage.success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

#formMessage.error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Form Error Messages */
.form-error {
    animation: errorShake 0.3s ease;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Contact Info Hover Effects */
.contact-info-box i {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-box:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-info-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .form-group {
        animation: formGroupFadeIn 0.4s ease-out forwards !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px;
    }

    #contactForm button[type="submit"] {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .contact-info-box {
        padding: 1.5rem !important;
    }
}

/* Contact Accessibility */
@media (prefers-reduced-motion: reduce) {
    .contact-info-box,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea,
    #contactForm button[type="submit"],
    #formMessage {
        animation: none !important;
        transition: none !important;
    }

    .contact-info-box:hover {
        transform: none !important;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    select:focus,
    textarea:focus {
        transform: none;
    }

    .contact-info-box:hover i {
        transform: none;
    }
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-image-container {
        margin-bottom: 2rem;
    }

    .about-badge-float {
        position: static !important;
        margin-top: 1rem;
        display: inline-block;
    }

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

    .achievement-card {
        padding: 1.5rem !important;
    }

    .achievement-card h3 {
        font-size: 1.25rem !important;
    }
}

/* Focus States */
.achievement-card:focus-within {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
    border-radius: 0.75rem;
}

.achievement-card a:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* ============================================
   FOOTER SECTION STYLES & ANIMATIONS
   ============================================ */

/* Footer Links */
.footer-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 2px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

/* Footer Links Hover */
footer a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover::before {
    width: 100%;
}

/* Social Media Icons */
footer .fab {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

footer [title]:hover {
    transform: scale(1.2) rotate(-10deg) !important;
}

/* Newsletter Form */
#newsletterForm input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#newsletterForm input:focus {
    background-color: rgba(15, 23, 42, 0.8);
    transform: translateY(-2px);
}

#newsletterForm button {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

#newsletterForm button:hover {
    transform: translateY(-2px);
}

#newsletterForm button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

#newsletterForm button:hover::before {
    width: 300px;
    height: 300px;
}

/* Back to Top Button */
.back-to-top-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top-btn:hover {
    background-color: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-3px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section-title {
        font-size: 1rem;
    }

    #newsletterForm button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Footer Accessibility */
@media (prefers-reduced-motion: reduce) {
    footer a,
    footer [title],
    #newsletterForm input,
    #newsletterForm button,
    .back-to-top-btn {
        animation: none !important;
        transition: none !important;
    }

    footer a::before {
        display: none;
    }

    #newsletterForm button::before {
        display: none;
    }

    footer [title]:hover {
        transform: none !important;
    }

    #newsletterForm input:focus {
        transform: none;
    }

    .back-to-top-btn:hover {
        transform: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    nav, footer {
        display: none;
    }
}
