/**
 * Supiksha Main Style Sheet
 * Author: Antigravity AI
 * Color Palette: Royal Purple, Pink Gradient, Gold Accent, Soft Lavender, Light Peach, White
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-purple: #5c1b99;
    --primary-purple-rgb: 92, 27, 153;
    --secondary-pink: #d63384;
    --secondary-pink-rgb: 214, 51, 132;
    --gold-accent: #f5b041;
    --soft-lavender: #f3effa;
    --light-peach: #fff5f0;
    --white: #ffffff;
    --dark-purple: #23083e;
    --text-dark: #2d1a3c;
    --text-muted: #7d6e8d;
    --border-color: rgba(92, 27, 153, 0.1);
    
    --gradient-primary: linear-gradient(135deg, #d63384 0%, #5c1b99 100%);
    --gradient-secondary: linear-gradient(135deg, #5c1b99 0%, #d63384 100%);
    --gradient-light: linear-gradient(135deg, #fff5f8 0%, #f4efff 100%);
    --gradient-peach: linear-gradient(135deg, #fff9f5 0%, #fff0f5 100%);
    --gradient-glass: rgba(255, 255, 255, 0.75);
    
    --shadow-sm: 0 4px 10px rgba(92, 27, 153, 0.05);
    --shadow-md: 0 10px 30px rgba(92, 27, 153, 0.08);
    --shadow-lg: 0 20px 40px rgba(92, 27, 153, 0.12);
    --shadow-glow: 0 0 25px rgba(214, 51, 132, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-purple);
}

a {
    text-decoration: none;
    color: var(--primary-purple);
    transition: var(--transition-normal);
}

a:hover {
    color: var(--secondary-pink);
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--soft-lavender);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-pink);
}

/* Container Spacing */
.section-padding {
    padding: 100px 0;
}

/* Buttons & CTAs */
.btn-primary-gradient {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.btn-primary-gradient:hover::before {
    opacity: 1;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-purple {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple) !important;
    background: transparent;
    padding: 10px 26px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-outline-purple:hover {
    background: var(--primary-purple);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white) !important;
    border: none;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Badges */
.badge-welcome {
    background-color: rgba(214, 51, 132, 0.08);
    color: var(--secondary-pink);
    border: 1px solid rgba(214, 51, 132, 0.2);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Section Header */
.section-subtitle {
    color: var(--secondary-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Header & Navigation */
.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.header-area.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid rgba(92, 27, 153, 0.05);
}

.navbar-brand img {
    max-height: 55px;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-purple) !important;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-pink) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-top: 3px solid var(--secondary-pink);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 24px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--soft-lavender);
    color: var(--primary-purple);
    padding-left: 30px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: #ffffff;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    top: -50px;
    right: 50px;
    animation: floatShape 8s infinite alternate;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-pink);
    bottom: -50px;
    left: 50px;
    animation: floatShape 10s infinite alternate-reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span.purple-text {
    color: var(--primary-purple);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.trust-badge i {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-pink);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

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

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Feature Section (Bar below Hero) */
.feature-bar {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.feature-bar-item {
    text-align: center;
    padding: 10px;
}

.feature-bar-item i {
    font-size: 2rem;
    color: var(--secondary-pink);
    margin-bottom: 10px;
    display: inline-block;
}

.feature-bar-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card .icon-box {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: var(--soft-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.service-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-card .read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-purple);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 51, 132, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .icon-box {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

/* Tourism Section */
.tourism-section {
    background: var(--gradient-peach);
    position: relative;
}

.tourism-header-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-img-wrapper {
    position: relative;
    overflow: hidden;
}

.package-img-wrapper img {
    transition: var(--transition-slow);
}

.package-card:hover .package-img-wrapper img {
    transform: scale(1.1);
}

.package-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

.package-rating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--gold-accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.package-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.package-price h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin: 0;
}

.package-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.package-btns {
    display: flex;
    gap: 10px;
}

.package-btn-icon {
    width: 38px;
    height: 38px;
    background: var(--soft-lavender);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.package-btn-icon:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.tourism-features-bar {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-top: 50px;
}

.tourism-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tourism-feature-item i {
    width: 45px;
    height: 45px;
    background: rgba(214, 51, 132, 0.1);
    color: var(--secondary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.tourism-feature-item h6 {
    margin-bottom: 2px;
    font-weight: 700;
}

.tourism-feature-item p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Portfolio Bento Grid Section */
.portfolio-section {
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.filter-btn {
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-normal);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-item {
    grid-column: span 4;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 380px;
    transition: var(--transition-normal);
}

.bento-item.span-8 {
    grid-column: span 8;
}

.bento-item.span-6 {
    grid-column: span 6;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(35, 8, 62, 0.9) 0%, rgba(35, 8, 62, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
    transform: translateY(0);
}

.bento-item:hover .bento-img {
    transform: scale(1.08);
}

.bento-category {
    color: var(--gold-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bento-title {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bento-link {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.bento-link:hover {
    background: var(--secondary-pink);
    color: var(--white);
    transform: rotate(45deg);
}

/* About & Statistics */
.about-section {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 51, 132, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--soft-lavender);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
    transition: var(--transition-normal);
}

.stat-card:hover .stat-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
}

.testimonial-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin: 15px;
}

.testimonial-rating {
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-pink);
}

.client-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQs Accordion */
.faq-section {
    background: var(--gradient-peach);
}

.accordion-item {
    border: 1px solid var(--border-color) !important;
    background: var(--white) !important;
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: var(--dark-purple) !important;
    padding: 20px 25px !important;
    background: var(--white) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--soft-lavender) !important;
    color: var(--primary-purple) !important;
}

.accordion-body {
    padding: 20px 25px !important;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: var(--white);
}

/* Contact Area */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-info-card h3, .contact-info-card p, .contact-info-card a {
    color: var(--white) !important;
}

.contact-info-list {
    margin: 40px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--white);
}

.contact-info-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.contact-social-btn:hover {
    background: var(--white);
    color: var(--primary-purple) !important;
    transform: scale(1.1);
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
}

.form-group-custom {
    margin-bottom: 20px;
    position: relative;
}

.form-control-custom {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-normal);
    width: 100%;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--secondary-pink);
    box-shadow: 0 0 10px rgba(214, 51, 132, 0.1);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-floating:hover {
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Sticky Mobile Navigation (Bottom bar on smaller screens) */
.mobile-sticky-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    padding: 10px 0;
}

.mobile-sticky-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-sticky-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-sticky-nav-item a i {
    font-size: 1.35rem;
    margin-bottom: 3px;
    color: var(--primary-purple);
}

.mobile-sticky-nav-item.active a, .mobile-sticky-nav-item a:hover {
    color: var(--secondary-pink);
}

.mobile-sticky-nav-item.active a i {
    color: var(--secondary-pink);
}

/* Footer Area */
.footer-area {
    background: var(--dark-purple);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
}

.footer-widget-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.footer-social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.footer-social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a::before {
    content: '→';
    font-family: inherit;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--secondary-pink);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Modals & Popups */
.modal-content-custom {
    border: none;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
}

.modal-header-gradient .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body-custom {
    padding: 40px 30px;
}

/* Blog layouts */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 51, 132, 0.2);
}

.blog-img-box {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.08);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    color: var(--primary-purple);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.blog-meta-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(35, 8, 62, 0.8);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
}

.blog-content-box {
    padding: 25px;
}

.blog-title-link {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    color: var(--dark-purple);
    line-height: 1.4;
}

.blog-title-link:hover {
    color: var(--secondary-pink);
}

.blog-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.blog-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Page Banner (Header for subpages) */
.page-banner {
    padding: 140px 0 80px 0;
    background: var(--gradient-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-purple);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--secondary-pink);
    font-weight: 500;
}

/* Admin Dashboard Styles */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark-purple);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.admin-sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar-header h5 {
    color: var(--white);
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
}

.admin-menu {
    padding: 20px 0;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.admin-menu-link i {
    font-size: 1.15rem;
    width: 24px;
}

.admin-menu-link:hover, .admin-menu-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--secondary-pink);
}

.admin-content {
    flex-grow: 1;
    background: #f8f6fb;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    height: 70px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.admin-body {
    padding: 30px;
    flex-grow: 1;
}

.admin-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 25px;
    margin-bottom: 25px;
}

.admin-stat-box {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.admin-stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.admin-stat-icon.purple {
    background: rgba(92, 27, 153, 0.1);
    color: var(--primary-purple);
}

.admin-stat-icon.pink {
    background: rgba(214, 51, 132, 0.1);
    color: var(--secondary-pink);
}

.admin-stat-icon.gold {
    background: rgba(245, 176, 65, 0.1);
    color: var(--gold-accent);
}

.admin-stat-icon.green {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.admin-stat-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.admin-stat-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================================================
   Admin Panel Responsive Design Additions
   ========================================================================== */

/* Layout wrapper and topbar */
@media (max-width: 991.98px) {
    .admin-wrapper {
        position: relative;
        overflow-x: hidden;
    }
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1050;
        margin-left: -260px; /* Hide by default */
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }
    .admin-sidebar:not(.collapsed) {
        margin-left: 0 !important; /* Slide in when open */
    }
    .admin-content {
        width: 100%;
        min-width: 100%;
    }
    .admin-topbar {
        padding: 0 15px;
    }
    
    /* Overlay background when sidebar is open */
    .admin-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(35, 8, 62, 0.4);
        backdrop-filter: blur(3px);
        z-index: 1040;
        display: none;
    }
    .sidebar-open .admin-overlay {
        display: block;
    }
}

/* Adjust sidebar behavior on desktop when collapsed */
@media (min-width: 992px) {
    .admin-sidebar.collapsed {
        margin-left: -260px;
    }
}

/* Header / Topbar adjustments */
@media (max-width: 575.98px) {
    .admin-topbar {
        height: 60px;
        padding: 0 10px;
    }
    .admin-topbar a[href*="pages/index.php"] {
        font-size: 0 !important;
        padding: 6px 10px !important;
        border-radius: 50% !important;
    }
    .admin-topbar a[href*="pages/index.php"] i {
        font-size: 1rem;
        margin: 0;
    }
    .admin-body {
        padding: 15px;
    }
    
    /* Dashboard KPI stack */
    .admin-stat-box {
        padding: 15px;
    }
    .admin-stat-info h3 {
        font-size: 1.5rem;
    }
}

/* Tables responsiveness */
.table-responsive {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.table-responsive table {
    margin-bottom: 0;
}
.table-responsive table th {
    white-space: nowrap;
}

/* Forms responsiveness */
@media (max-width: 767.98px) {
    .form-control-custom, .form-select {
        font-size: 14px;
        padding: 10px 12px;
    }
    .admin-card {
        padding: 15px;
        border-radius: 12px;
    }
}

/* Modals responsiveness */
@media (max-width: 575.98px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    .modal-body-custom {
        padding: 20px 15px;
    }
}

/* Flexible headers and actions on mobile */
@media (max-width: 575.98px) {
    .admin-body .d-flex.justify-content-between.align-items-center {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }
    .admin-body .d-flex.justify-content-between.align-items-center > * {
        width: 100%;
    }
    .admin-body .d-flex.justify-content-between.align-items-center .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
}

/* Responsive uploads preview spacing */
.admin-card img#image_preview {
    max-width: 100%;
    height: auto;
}

