/*
 * EspyHostel Main CSS - Premium Template Style
 * Global styles and animations
 */

/* ========================================
   CSS VARIABLES (Custom Properties)
   ======================================== */

:root {
    /* Primary Colors - Sydney PodBed Theme */
    --color-primary: #FF69B4;
    --color-primary-dark: #FF1493;
    --color-primary-light: #FFB6D9;
    --color-accent: #FFC800;

    /* Legacy color mappings for compatibility */
    --color-cyan: #FF69B4;
    --color-blue: #FF69B4;
    --color-dark-blue: #FF1493;
    --color-purple: #FF69B4;
    --color-violet: #FF1493;

    /* Dark Theme Colors */
    --bg-dark: #212529;
    --bg-dark-solid: #212529;
    --color-slate-900: #212529;
    --color-slate-800: #343a40;
    --color-slate-700: #495057;
    --color-slate-600: #6c757d;
    --color-slate-500: #adb5bd;
    --color-slate-400: #ced4da;

    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --text-light: #adb5bd;

    /* Gradients - Sydney PodBed Theme */
    --gradient-primary: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    --gradient-hero: linear-gradient(135deg, #212529 0%, #343a40 50%, #495057 100%);
    --gradient-loader: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    --gradient-button: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 20px 50px rgba(255, 105, 180, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-navbar: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 4px 15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ========================================
   PAGE LOADER STYLES
   ======================================== */

#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#pageLoader .loader-spinner {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

#pageLoader .loader-text {
    color: white;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   GLOBAL PREMIUM STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 105, 180, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 105, 180, 0.02) 0%, transparent 20%);
    pointer-events: none;
    z-index: -1;
}

/* Premium typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Ensure muted text has sufficient contrast on light backgrounds */
.bg-light .text-muted {
    color: #475569 !important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Main content area */
main {
    min-height: calc(100vh - 400px);
    position: relative;
    z-index: 1;
}

/* Section spacing and backgrounds */
section {
    padding: 4rem 0;
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
}

/* Alternate section backgrounds */
section:nth-child(even) {
    background: rgba(248, 250, 252, 0.5);
}

section:nth-child(odd) {
    background: transparent;
}

/* ========================================
   GLOBAL ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* ========================================
   PREMIUM HERO SECTION (PAID TEMPLATE STYLE)
   ======================================== */

.hero-section {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

/* Animated gradient overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 200, 0, 0.05) 50%, transparent 100%);
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
}

/* Floating particles effect */
.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    animation: floatParticles 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticles {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }
}

/* ========================================
   THE ESPY HOSTEL - RAINBOW WAVE LOGO
   ======================================== */

.espy-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
    padding: 5px 15px;
}

.espy-logo-main {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Rainbow wave animation text */
.rainbow-text {
    background: linear-gradient(90deg,
            #FF69B4,
            #FFC800,
            #FF1493,
            #FFD700,
            #FFB6D9,
            #FFC800,
            #FF69B4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowWave 3s linear infinite;
}

@keyframes rainbowWave {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.espy-logo-wave {
    font-size: 14px;
    letter-spacing: 2px;
    margin: 2px 0;
    background: linear-gradient(90deg,
            #FF69B4,
            #FFC800,
            #FF1493,
            #FFD700,
            #FFB6D9,
            #FFC800,
            #FF69B4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowWave 3s linear infinite;
    animation-delay: 0.5s;
}

.espy-logo-sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 8px;
    color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Footer logo - smaller version */
.espy-logo-footer {
    transform: scale(0.9);
    transform-origin: left center;
    align-items: flex-start;
}

.espy-logo-footer .espy-logo-main {
    font-size: 24px;
}

.espy-logo-footer .espy-logo-wave {
    font-size: 12px;
}

.espy-logo-footer .espy-logo-sub {
    font-size: 14px;
    letter-spacing: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .espy-logo-main {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .espy-logo-wave {
        font-size: 12px;
    }

    .espy-logo-sub {
        font-size: 14px;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .espy-logo-main {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .espy-logo-wave {
        font-size: 10px;
    }

    .espy-logo-sub {
        font-size: 12px;
        letter-spacing: 4px;
    }
}

/* ========================================
   PREMIUM LOGO STYLING (PAID TEMPLATE STYLE)
   ======================================== */

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Premium Icon Design with Glassmorphism Effect */
.logo-icon {
    position: relative;
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #FF69B4 0%, #FF1493 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(255, 105, 180, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Shiny overlay effect */
.logo-icon::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;
}

.logo-icon:hover::before {
    left: 100%;
}

/* Icon bounce effect on hover */
.logo-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 40px rgba(255, 105, 180, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Premium Typography */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 2px;
}

/* Animated gradient text */
.logo-primary {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.logo-secondary {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Premium tagline with accent */
.logo-tagline {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
    position: relative;
    padding-left: 10px;
}

.logo-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 2px;
    background: linear-gradient(90deg, #FF69B4, transparent);
}

/* Modern logo wrapper */
.modern-logo {
    padding: 10px 0;
    transition: all 0.3s ease;
    display: inline-flex;
}

.modern-logo:hover .logo-icon {
    transform: translateY(-3px) scale(1.05);
}

.modern-logo:hover .logo-primary {
    animation-duration: 1.5s;
}

/* Footer Logo Premium Styling */
.footer-logo-container {
    gap: 12px;
}

.footer-logo-container .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    box-shadow:
        0 6px 24px rgba(255, 105, 180, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.footer-logo-container .logo-primary {
    font-size: 24px;
}

.footer-logo-container .logo-secondary {
    font-size: 24px;
}

/* Responsive Premium Logo */
@media (max-width: 768px) {
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
        border-radius: 12px;
    }

    .logo-primary,
    .logo-secondary {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .logo-container {
        gap: 10px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-primary,
    .logo-secondary {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 6px;
    }
}

/* ========================================
   PREMIUM NAVBAR STYLING (PAID TEMPLATE STYLE)
   ======================================== */

.navbar {
    animation: fadeInDown 0.5s ease-out;
    background: var(--bg-dark) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-navbar);
    padding: 0.75rem 0;
    transition: var(--transition-fast);
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Sticky navbar effect */
.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Premium Nav Links */
.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Gradient underline effect */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF69B4, #FFC800);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Glow effect on hover */
.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 200, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Active nav link */
.nav-link.active,
.nav-item .nav-link:active {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.15));
    color: #FF69B4 !important;
}

.nav-link.active::before {
    width: 60%;
}

/* Navbar toggler premium style */
.navbar-toggler {
    border: 2px solid rgba(255, 105, 180, 0.5);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #FF69B4;
    background: rgba(255, 105, 180, 0.1);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 105, 180, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown menu premium style */
.dropdown-menu {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.15));
    color: #FF69B4;
    transform: translateX(5px);
}

/* Mobile navbar collapse */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        margin: 0.25rem 0;
    }
}

/* ========================================
   PREMIUM CARD DESIGNS (PAID TEMPLATE STYLE)
   ======================================== */

.card,
.room-card,
.featured-post {
    position: relative;
    border: none;
    border-radius: var(--radius-lg);
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

/* Gradient border effect */
.card::before,
.room-card::before,
.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(255, 20, 147, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before,
.room-card:hover::before,
.featured-post:hover::before {
    opacity: 1;
}

/* Shine effect on hover */
.card::after,
.room-card::after,
.featured-post::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.card:hover::after,
.room-card:hover::after,
.featured-post:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.card:hover,
.room-card:hover,
.featured-post:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(255, 105, 180, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Card image styling */
.card img,
.room-card img,
.featured-post img {
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.card:hover img,
.room-card:hover img,
.featured-post:hover img {
    transform: scale(1.05);
}

/* Card body */
.card-body,
.room-card .card-body,
.featured-post .card-body {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 1.5rem;
}

/* Card title */
.card-title {
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: #FF69B4;
}

/* Card text */
.card-text {
    color: #475569;
    line-height: 1.6;
}

/* ========================================
   PREMIUM BUTTON DESIGNS (PAID TEMPLATE STYLE)
   ======================================== */

.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-button);
}

/* Primary button */
.btn-primary {
    background: var(--gradient-button);
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFB6D9 0%, #FF69B4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    color: white !important;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary button */
.btn-secondary {
    background: #64748b;
    color: white !important;
}

.btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
    color: white !important;
}

/* White button - matches pink button style */
.btn-white {
    background: white;
    color: #FF1493 !important;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #fff5f8;
    color: #FF1493 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.btn-white:active {
    transform: translateY(0);
}

/* White outline button - for dark backgrounds */
.btn-white-outline {
    background: transparent;
    color: white !important;
    border: 2px solid white;
    font-weight: 600;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-white-outline:active {
    transform: translateY(0);
}

/* Outline button */
.btn-outline-primary {
    background: transparent;
    color: #FF69B4;
    border: 2px solid #FF69B4;
}

.btn-outline-primary:hover {
    background: #FF69B4;
    color: white !important;
    border-color: #FF69B4;
    transform: translateY(-2px);
}

/* Override Bootstrap text-primary to pink */
.text-primary {
    color: #FF69B4 !important;
}

/* Ensure sufficient contrast on light backgrounds */
.bg-light .btn-outline-primary {
    color: #FF1493;
    border-color: #FF1493;
}

.bg-light .btn-outline-primary:hover {
    background: #FF1493;
    border-color: #FF1493;
}

/* ========================================
   PREMIUM FOOTER (PAID TEMPLATE STYLE)
   ======================================== */

footer {
    position: relative;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    animation: fadeIn 1s ease-out;
    overflow: hidden;
}

/* Gradient overlay */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF69B4, transparent);
}

/* Floating gradient orbs */
footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 20s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }
}

footer h6,
footer .h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h6::after,
footer .h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FF69B4, #FF1493);
    border-radius: 2px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #FF69B4, #FFC800);
    transition: width 0.3s ease;
}

footer a:hover {
    color: #FF69B4 !important;
    transform: translateX(5px);
    text-decoration: none;
}

footer a:hover::before {
    width: 100%;
}

/* Social icons premium style */
footer .fab,
footer .fas {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 18px;
}

footer a:hover .fab,
footer a:hover .fas {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    transform: translateY(-3px) rotate(0deg);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

/* Copyright bar */
footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
    position: relative;
    z-index: 1;
}

/* Footer list items */
footer ul li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

footer ul li:hover {
    transform: translateX(3px);
}

footer ul li i {
    color: #FF69B4;
    margin-right: 0.5rem;
}

/* ========================================
   PREMIUM FORM STYLING (PAID TEMPLATE STYLE)
   ======================================== */

.form-control,
.form-select {
    border: 2px solid rgba(100, 116, 139, 0.2);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #FF69B4;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(255, 105, 180, 0.1),
        0 4px 12px rgba(255, 105, 180, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: rgba(100, 116, 139, 0.5);
}

/* Form labels */
.form-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* Input group */
.input-group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.input-group-text {
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-right: none;
    color: #FF69B4;
    font-weight: 600;
}

/* Textarea */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox and radio premium style */
.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(100, 116, 139, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: #FF69B4;
    border-color: #FF69B4;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.form-check-label {
    color: #475569;
    font-size: 15px;
    margin-left: 0.5rem;
}

/* Select dropdown */
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FF69B4' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* ========================================
   PREMIUM BADGES & TAGS
   ======================================== */

.badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.badge-primary {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
}

.badge-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.badge-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* ========================================
   ICON ANIMATIONS
   ======================================== */

.fab,
.fas {
    transition: transform 0.3s ease;
}

a:hover .fab,
a:hover .fas {
    transform: rotate(360deg) scale(1.2);
}

/* ========================================
   PAGE LOAD ANIMATION
   ======================================== */

body {
    animation: fadeIn 0.5s ease-out;
}

/* ========================================
   SMOOTH SCROLL
   ======================================== */

html {
    scroll-behavior: smooth;
}