/* ==========================================================================
   Rushika Fashions Links Page Stylesheet
   Designed for: Modern, Luxury, Premium Ethnic Wear Store
   Theme: Deep Indigo-Purple, Vibrant Magenta & Brown Sugar Golden Accents
   ========================================================================== */

/* @font-face declaration for their premium brand font 'Brown Sugar' */
@font-face {
    font-family: 'Brown Sugar';
    src: url('fonts/brown-sugar.woff2') format('woff2'),
        url('fonts/brown-sugar.woff') format('woff'),
        url('fonts/brown-sugar.ttf') format('truetype'),
        url('fonts/brown-sugar.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Gradients & Accents */
    --color-bg-dark: #0f0516;
    --color-purple-deep: #210a30;
    --color-purple-mid: #4a156d;
    --color-magenta: #c71f7c;
    --color-rose-light: #e65c9c;
    --color-brown-sugar: #c59b6d;
    /* Golden-brown accent matching brand typography theme */

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);

    /* UI Glassmorphism Values */
    --glass-bg: rgba(33, 10, 48, 0.4);
    --glass-bg-hover: rgba(74, 21, 109, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(230, 92, 156, 0.3);

    /* Shadows & Effects */
    --glow-shadow: 0 8px 32px 0 rgba(199, 31, 124, 0.15);
    --glow-shadow-hover: 0 12px 40px 0 rgba(230, 92, 156, 0.35);
    --neon-text-glow: 0 0 10px rgba(230, 92, 156, 0.6);

    /* Transition standard */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

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

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-purple-mid);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-magenta);
}

/* --------------------------------------------------------------------------
   2.5 Authentic Brand Colors for Icons
   -------------------------------------------------------------------------- */
.fa-instagram {
    color: #e1306c !important;
}

.fa-whatsapp {
    color: #25d366 !important;
}

.fa-youtube {
    color: #ff0000 !important;
}

.fa-google {
    color: #4285f4 !important;
}

.fa-map-marker-alt {
    color: #ea4335 !important;
}

/* Subtle brightness pop on hover for brand icons inside interactive containers */
.social-icon-btn:hover i,
.link-card:hover i,
.highlight-card:hover i {
    filter: brightness(1.2) drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
}

/* --------------------------------------------------------------------------
   3. Animated Background Glows
   -------------------------------------------------------------------------- */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-magenta) 0%, transparent 80%);
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-purple-mid) 0%, transparent 80%);
    animation: orbFloat 30s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    top: 40%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-rose-light) 0%, transparent 85%);
    animation: orbFloat 20s infinite alternate ease-in-out 2s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* --------------------------------------------------------------------------
   4. Main Container & Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 480px;
    padding: 24px 16px 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   5. Profile Header Section
   -------------------------------------------------------------------------- */
.profile-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    width: 125px;
    height: 125px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2.5px solid transparent;
    background: linear-gradient(var(--color-bg-dark), var(--color-bg-dark)) padding-box,
        linear-gradient(135deg, var(--color-purple-deep), var(--color-magenta), var(--color-brown-sugar)) border-box;
    box-shadow: var(--glow-shadow);
    animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
    100% {
        transform: rotate(360deg);
    }
}

.profile-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #ffffff;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.profile-title {
    font-family: 'Brown Sugar', 'Prata', 'Playfair Display', serif;
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #c71f7c 0%, #e65c9c 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 8px rgba(199, 31, 124, 0.3));
}

.profile-tagline {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 4px;
}

.profile-subtag {
    font-size: 0.8rem;
    color: var(--color-brown-sugar);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Social Row Buttons */
.social-icons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 10px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-bounce);
    backdrop-filter: blur(12px);
}

.social-icon-btn:hover {
    transform: translateY(-4px) scale(1.1);
    background: var(--glass-bg-hover);
    border-color: var(--color-rose-light);
    color: var(--color-rose-light);
    box-shadow: 0 4px 15px rgba(230, 92, 156, 0.3);
}

/* --------------------------------------------------------------------------
   5.5 Trust & Highlights Section (3-Column Single Row Version)
   -------------------------------------------------------------------------- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.highlight-card {
    position: relative;
    min-width: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards ease-out;
    overflow: hidden;
}

.highlight-card:nth-child(1) {
    animation-delay: 0.1s;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.18s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.26s;
}

.highlight-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glow-shadow);
}

.highlight-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 155, 109, 0.1);
    border: 1px solid rgba(197, 155, 109, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    color: var(--color-brown-sugar);
    font-size: 0.95rem;
    transition: var(--transition-bounce);
}

.highlight-card:hover .highlight-icon-wrapper {
    transform: scale(1.1) rotate(8deg);
    background: rgba(230, 92, 156, 0.15);
    border-color: var(--color-rose-light);
    box-shadow: 0 0 10px rgba(230, 92, 156, 0.2);
}

.highlight-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    letter-spacing: 0.1px;
    font-family: 'Inter', sans-serif;
}

.highlight-desc {
    font-size: 0.62rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 1.1;
}

/* --------------------------------------------------------------------------
   5.8 Google Customer Reviews Auto-Rolling Carousel
   -------------------------------------------------------------------------- */
.reviews-section {
    width: 100%;
    margin-bottom: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 18px 14px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glow-shadow);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.32s forwards ease-out;
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 14px;
    gap: 4px;
}

.reviews-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-icon {
    font-size: 1.25rem;
    color: #4285f4;
}

.reviews-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.2px;
    font-family: 'Inter', sans-serif;
}

.reviews-rating-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.rating-num {
    font-weight: 700;
    color: var(--text-primary);
}

.stars-row {
    color: #f59e0b; /* Golden yellow stars */
    display: flex;
    gap: 2px;
    font-size: 0.82rem;
}

.reviews-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Carousel Track & Slides */
.carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-slide {
    min-width: 100%;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.review-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-bounce);
    background: #ffffff;
}

.review-slide:hover .review-img {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(199, 34, 123, 0.18);
}

/* Nav Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(36, 18, 67, 0.15);
    transition: var(--transition-bounce);
    opacity: 0.88;
}

.carousel-nav:hover {
    opacity: 1;
    background: #ffffff;
    color: var(--color-magenta);
    transform: translateY(-50%) scale(1.12);
}

.nav-prev {
    left: -10px;
}

.nav-next {
    right: -10px;
}

/* Indicator Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(36, 18, 67, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 24px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--color-purple-deep), var(--color-magenta));
}

.lightbox-content {
    max-width: 480px;
    padding: 16px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   6. Links Stack (The Main Buttons)
   -------------------------------------------------------------------------- */
.links-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.link-card {
    position: relative;
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards ease-out;
}

/* Delayed fade-in for each card to create an elegant cascade effect */
.link-card:nth-child(1) {
    animation-delay: 0.42s;
}

.link-card:nth-child(2) {
    animation-delay: 0.5s;
}

.link-card:nth-child(3) {
    animation-delay: 0.58s;
}

.link-card:nth-child(4) {
    animation-delay: 0.66s;
}

.link-card:nth-child(5) {
    animation-delay: 0.74s;
}

.link-card:nth-child(6) {
    animation-delay: 0.82s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    transition: 0.5s;
}

.link-card:hover::before {
    left: 100%;
    transition: 0.6s ease-in-out;
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glow-shadow);
}

.link-card:active {
    transform: translateY(-1px) scale(0.99);
}

/* Card Elements Layout */
.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--color-brown-sugar);
    margin-right: 16px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.link-card:hover .card-icon {
    background: rgba(197, 155, 109, 0.15);
    color: #ffffff;
    transform: scale(1.05);
}

.card-content {
    flex-grow: 1;
    text-align: left;
    padding-right: 10px;
    min-width: 0;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    letter-spacing: 0.2px;
}

.card-description {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.25;
}

.card-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.link-card:hover .card-arrow {
    color: var(--color-brown-sugar);
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6.1 Featured Card Override (WhatsApp Community)
   -------------------------------------------------------------------------- */
.featured-card {
    border: 1px solid rgba(230, 92, 156, 0.3);
    background: linear-gradient(135deg, rgba(33, 10, 48, 0.6) 0%, rgba(199, 31, 124, 0.18) 100%);
    box-shadow: 0 4px 20px rgba(199, 31, 124, 0.12);
    animation: fadeInUp 0.5s forwards ease-out, heartbeatPulse 3s infinite ease-in-out 1s;
}

.featured-card .card-content {
    padding-right: 65px;
}

.featured-card .card-icon {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-rose-light));
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(199, 31, 124, 0.3);
}

.featured-card .card-icon i {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.featured-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 92, 156, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes heartbeatPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(199, 31, 124, 0.12), 0 0 0 0 rgba(230, 92, 156, 0);
    }

    50% {
        box-shadow: 0 6px 25px rgba(199, 31, 124, 0.22), 0 0 0 6px rgba(230, 92, 156, 0.08);
    }
}

.featured-card:hover {
    border-color: rgba(230, 92, 156, 0.6);
    box-shadow: 0 8px 30px rgba(199, 31, 124, 0.3);
}

/* Badge styling for Featured Link */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--color-brown-sugar), var(--color-rose-light));
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   7. Share & Footer Action Center
   -------------------------------------------------------------------------- */
.footer-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition-bounce);
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-btn:active {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   8. Brand Footer Copyright
   -------------------------------------------------------------------------- */
.brand-footer {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.brand-footer p {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.brand-footer .crafted-text {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   9. Custom Contact Modal Dialogue
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 5, 22, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: calc(100% - 40px);
    max-width: 400px;
    background: linear-gradient(135deg, var(--color-purple-deep) 0%, #15091f 100%);
    border: 1px solid rgba(230, 92, 156, 0.25);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(199, 31, 124, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-title {
    font-family: 'Brown Sugar', 'Prata', 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    gap: 12px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(199, 31, 124, 0.15);
    color: var(--color-rose-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    /* Prevents overflow */
}

.contact-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.86rem;
    color: #ffffff;
    font-weight: 500;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
}

.contact-value.address-value {
    font-size: 0.80rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}

.contact-link {
    font-size: 0.81rem;
    word-break: break-all;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-rose-light);
    text-decoration: underline;
}

.copy-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    flex-shrink: 0; /* Prevents squishing on multi-line text */
    transition: var(--transition-bounce);
}

.copy-btn:hover {
    background: var(--color-purple-mid);
    border-color: var(--color-rose-light);
    color: #ffffff;
    transform: scale(1.05);
}

.copy-btn.copied {
    background: #10b981;
    /* Green */
    border-color: #10b981;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. Floating WhatsApp Chat Widget (Bottom Right)
   -------------------------------------------------------------------------- */
.floating-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
}

.floating-chat a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: var(--transition-bounce);
}

.floating-chat a:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.chat-icon {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #0f0516;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.floating-chat:hover .chat-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Auto Pulse animation on WhatsApp Floater */
.floating-chat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: waPulse 2s infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --------------------------------------------------------------------------
   11. Sparkles & Petal Interactive Click Particle Effects
   -------------------------------------------------------------------------- */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFall 0.8s ease-out forwards;
}

@keyframes particleFall {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) scale(0) rotate(180deg);
        opacity: 0;
    }
}

/* --------------------------------------------------------------------------
   11.5 SEO Keyword Tag Cloud Section
   -------------------------------------------------------------------------- */
.seo-keywords-section {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.seo-keywords-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.seo-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.seo-tag {
    font-size: 0.68rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    transition: var(--transition-smooth);
}

.seo-tag:hover {
    background: rgba(230, 92, 156, 0.15);
    border-color: var(--color-rose-light);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   12. Responsive Adjustments (Mobile & Desktop Viewports)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .container {
        padding: 20px 12px 35px 12px;
        max-width: 100%;
    }

    .profile-title {
        font-size: 1.7rem;
    }

    .highlights-grid {
        gap: 6px;
    }

    .highlight-card {
        padding: 10px 3px;
    }

    .highlight-title {
        font-size: 0.72rem;
    }

    .highlight-desc {
        font-size: 0.58rem;
    }

    .link-card {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
        margin-right: 12px;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .card-description {
        font-size: 0.78rem;
    }

    .reviews-section {
        padding: 14px 10px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 16px 10px 30px 10px;
    }

    .profile-title {
        font-size: 1.5rem;
    }

    .social-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .highlight-title {
        font-size: 0.68rem;
    }

    .highlight-desc {
        font-size: 0.55rem;
    }

    .featured-card .card-content {
        padding-right: 55px;
    }

    .badge {
        font-size: 0.58rem;
        padding: 2px 6px;
    }
}