/* ================== ROOT & PERFORMANCE ================== */
:root {
    --primary: #d63384;
    --secondary: #6c1d45;
    --accent: #ff6b9d;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text: #e9ecef;
    --whatsapp: #25D366;
    --call: #e91e63;
    --bg: #0d0d12; /* Fixed: Was undefined */
    --border: rgba(255, 255, 255, 0.1); /* Unified */
    --shadow: 0 -4px 16px rgba(0, 0, 0, 0.3); /* Unified for bar */
    --radius: 14px; /* ← 16px → 14px */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --bar-height: 46px; /* ← 48px → 46px */
    --bar-height-mobile: 40px; /* ← 42px → 40px */
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1b29 100%);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height */
}
/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
p a{
    color: orange;
}
b{
    color:yellow;
}
strong {
color:cornsilk;
}
.container-custom {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}
/* ================== HERO - MODERN GLASS ================== */
.hero {
    position: relative;
    min-height: 62vh; /* ← 68vh → 62vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 70px 18px; /* ← 90px 20px → 70px 18px */
    border-bottom: 4px solid var(--primary); /* ← 5px → 4px */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/desk-bnr.webp') center/cover no-repeat fixed;
    filter: brightness(0.6) contrast(1.2);
    z-index: 1;
    transform: scale(1.02);
    transition: transform 10s ease;
}
.hero:hover .hero-bg {
    transform: scale(1.06);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px; /* ← 920px → 860px */
    margin: 0 auto;
    padding: 1.9rem; /* ← 2.2rem → 1.9rem */
    background: rgba(15, 15, 15, 0.55);
    border-radius: var(--radius);
    backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 12px 32px rgba(0,0,0,0.32); /* ← 15px 40px → 12px 32px */
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.9s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: 2.6rem; /* ← 3rem → 2.6rem */
    margin-bottom: 0.8rem; /* ← 1rem → 0.8rem */
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}
.hero h1 .highlight {
    color: var(--accent);
    font-size: 1.15em;
    display: block;
    margin-top: 0.4rem;
}
.hero .lead {
    font-size: 1.1rem; /* ← 1.2rem → 1.1rem */
    margin-bottom: 1.7rem; /* ← 2rem → 1.7rem */
    color: #f0f0f0;
    opacity: 0.96;
    line-height: 1.65;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero {
    padding: 8px 24px; /* ← 16px 36px → 14px 32px */
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    font-size: 1rem; /* ← 1.1rem → 1rem */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* ← 12px → 10px */
    transition: var(--transition);
    box-shadow: 0 7px 18px rgba(0,0,0,0.28); /* ← 8px 20px → 7px 18px */
    min-width: 165px; /* ← 180px → 165px */
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}
.btn-hero:hover::before {
    left: 100%;
}
.btn-hero.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #1da851);
}
.btn-hero.call {
    background: linear-gradient(135deg, var(--primary), #c12a76);
}
.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(214, 51, 132, 0.45); /* ← 15px 30px → 12px 26px */
}
.btn-hero i {
    font-size: 1.35rem; /* ← 1.5rem → 1.35rem */
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
/* ================== MOBILE HERO - ULTRA COMPACT ================== */
@media (max-width: 767px) {
    .hero {
        min-height: 46vh; /* ← 48vh → 46vh */
        max-height: 52vh; /* ← 55vh → 52vh */
        padding: 14px 10px; /* ← 16px 12px → 14px 10px */
        background: url('../images/mob-bnr.webp') center/cover no-repeat scroll;
    }
    .hero-bg {
        display: none;
    }
    .hero-content {
        width: 100%;
        padding: 0.8rem 0.75rem; /* ← 0.9rem 0.8rem → 0.8rem 0.75rem */
        background: rgba(15, 15, 15, 0.75);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.5); /* ← 8px 20px → 7px 18px */
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .hero h1 {
        font-size: 1.38rem; /* ← 1.48rem → 1.38rem */
        line-height: 1.2;
        margin-bottom: 0.35rem; /* ← 0.4rem → 0.35rem */
        font-weight: 900;
    }
    .hero h1 .highlight {
        font-size: 0.95em;
        margin-top: 0.15rem;
    }
    .hero .lead {
        font-size: 0.78rem; /* ← 0.82rem → 0.78rem */
        margin-bottom: 0.7rem; /* ← 0.8rem → 0.7rem */
        line-height: 1.4;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
        font-weight: 600;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 7px; /* ← 8px → 7px */
        margin-top: 0.2rem;
        width: 100%;
    }
    .btn-hero {
        width: 100%;
        padding: 10px 12px; /* ← 11px 14px → 10px 12px */
        font-size: 0.88rem; /* ← 0.92rem → 0.88rem */
        min-height: 42px; /* ← 46px → 42px */
        border-radius: 10px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }
    .btn-hero i {
        font-size: 1.15rem; /* ← 1.25rem → 1.15rem */
    }
}
/* ================== HEADER - MINIMAL ================== */
.top-bar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* ================== LOGO ================== */
.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* ← 12px → 10px */
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    padding: 9px 14px; /* ← 10px 16px → 9px 14px */
    border-radius: 18px; /* ← 20px → 18px */
    background: linear-gradient(135deg, #1e1a2b, #2d1b3a);
    border: 1px solid rgba(255, 107, 157, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.logo-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 35px rgba(214, 51, 132, 0.4), inset 0 1px 5px rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #2d1b3a, #3a1f4a);
}
.logo-icon {
    width: 46px; height: 46px; /* ← 50px → 46px */
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1.55rem; /* ← 1.7rem → 1.55rem */
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.logo-icon::before {
    content: '';
    position: absolute;
    top: 10%; left: 10%;
    width: 30%; height: 30%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(8px);
}
.logo-name {
    font-size: 1.75rem; /* ← 1.9rem → 1.75rem */
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, #ff9ec1, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin: 0;
    line-height: 1;
}
.logo-surname {
    font-size: 1.75rem; /* ← 1.9rem → 1.75rem */
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1;
}
.logo-link:hover .logo-icon {
    transform: scale(1.12) rotate(8deg);
}
.logo-link:hover .logo-name {
    background: linear-gradient(90deg, #ff9ec1, #ffffff, var(--accent));
    -webkit-background-clip: text;
}
.logo-link:hover .logo-surname {
    color: #ffffff;
    letter-spacing: 2.5px;
}
@media (max-width: 767px) {
    .logo-link {
        padding: 7px 11px; /* ← 8px 12px → 7px 11px */
        gap: 2px;
        border-radius: 15px; /* ← 16px → 15px */
    }
    .logo-icon {
        width: 40px; height: 40px; /* ← 42px → 40px */
        font-size: 1.3rem; /* ← 1.4rem → 1.3rem */
    }
    .logo-name, .logo-surname {
        font-size: 1rem; /* ← 1.05rem → 1rem */
    }
    .logo-surname { letter-spacing: 1.5px; }
}
/* ================== CONTACT INFO ================== */
.contact-info {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    justify-content: flex-end;
}
.call-btn {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #c12a76);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(214,51,132,0.3);
    transition: var(--transition);
}
.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(214,51,132,0.4);
}
@media (max-width: 767px) {
    .top-bar { padding: 10px 0; }
    .contact-info { gap: 10px; }
}
/* ================== FLOATING WHATSAPP ================== */
.floating-wa {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    z-index: 999;
    animation: float 3s infinite ease-in-out;
    transition: 0.3s;
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
/* ================== LISTINGS - 95% TITLE + 85% DESC VISIBLE (FIXED) ================== */
.listing-container {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 0 14px;
    max-width: 1400px;
    margin: 0 auto;
}
.listing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    height: 172px; /* ← 188px → 172px */
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22); /* ← 6px 18px → 5px 16px */
    position: relative;
}
.listing-card:hover {
    transform: translateY(-6px); /* ← -7px → -6px */
    box-shadow: 0 18px 38px rgba(214, 51, 132, 0.32); /* ← 22px 45px → 18px 38px */
    border-color: var(--primary);
}
/* IMAGE */
.listing-img {
    width: 172px; min-width: 172px; /* ← 188px → 172px */
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}
.listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.listing-card:hover .listing-img img {
    transform: scale(1.14);
}
/* BADGE */
.badge-premium {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary), #c12a76);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    text-transform: uppercase;
}
/* CONTENT - MAX VISIBILITY + NO OVERFLOW */
.card-body {
    padding: 1rem 1.15rem; /* ← 1.1rem 1.3rem → 1rem 1.15rem */
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem; /* ← 0.5rem → 0.45rem */
    overflow: hidden;
    justify-content: flex-start;
}
/* TITLE - 95%+ VISIBLE */
.listing-title {
    font-size: 1.1rem; /* ← 1.15rem → 1.1rem */
    color: #fff;
    font-weight: 800;
    line-height: 1.28;
    margin: 0;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    flex-shrink: 0;
}
.listing-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}
.listing-title a:hover {
    color: var(--accent);
}
/* DESCRIPTION - 85%+ VISIBLE + NO OVERFLOW */
.listing-text {
    font-size: 0.82rem; /* ← 0.86rem → 0.82rem */
    color: rgba(255, 255, 255, 0.89);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    min-height: 0;
    min-width: 0;
    word-break: break-word;
}
/* BUTTONS - Compact */
.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}
.btn-action {
    flex: 1;
    padding: 7.5px 10px; /* ← 8px 11px → 7.5px 10px */
    border-radius: 10px; /* ← 11px → 10px */
    font-weight: 700;
    font-size: 0.79rem; /* ← 0.82rem → 0.79rem */
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.22);
    min-height: 36px; /* ← 38px → 36px */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #1da851); color: white; }
.btn-call { background: linear-gradient(135deg, #d63384, #c12a76); color: white; }
.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(214,51,132,0.4);
}
.btn-action i {
    font-size: 1rem; /* ← 1.05rem → 1rem */
}
/* ================== MOBILE ================== */
@media (max-width: 768px) {
    .listing-card {
        flex-direction: column;
        height: auto;
    }
    .listing-img {
        width: 100%;
        height: 138px; /* ← 145px → 138px */
    }
    .card-body {
        padding: 0.9rem 0.95rem; /* ← 0.95rem 1rem → 0.9rem 0.95rem */
        gap: 0.4rem; /* ← 0.45rem → 0.4rem */
    }
    .listing-title {
        font-size: 1.08rem; /* ← 1.12rem → 1.08rem */
        line-height: 1.26;
    }
    .listing-text {
        font-size: 0.81rem; /* ← 0.84rem → 0.81rem */
        line-height: 1.42;
        min-width: 0;
    }
    .action-buttons {
        flex-direction: column;
        gap: 6px; /* ← 7px → 6px */
    }
    .btn-action {
        font-size: 0.81rem; /* ← 0.84rem → 0.81rem */
        padding: 8px 10px; /* ← 9px 11px → 8px 10px */
        min-height: 40px; /* ← 42px → 40px */
    }
    .badge-premium {
        top: 7px;
        right: 7px;
        font-size: 0.64rem;
        padding: 3px 8px;
    }
}
@media (max-width: 480px) {
    .listing-img { height: 128px; } /* ← 130px → 128px */
    .card-body { padding: 0.82rem; } /* ← 0.85rem → 0.82rem */
    .listing-title { font-size: 1.06rem; } /* ← 1.1rem → 1.06rem */
    .btn-action { font-size: 0.79rem; } /* ← 0.82rem → 0.79rem */
}
/* ================== FIXED BOTTOM BAR ================== */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px; /* ← 10px → 8px */
    padding: 5px 12px; /* ← 6px 14px → 5px 12px */
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 9999;
    height: var(--bar-height);
    box-sizing: border-box;
}
.bottom-btn {
    flex: 1;
    max-width: 140px; /* ← 150px → 140px */
    height: 34px; /* ← 36px → 34px */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* ← 6px → 5px */
    border-radius: 12px; /* ← var(--radius) → 12px */
    font-weight: 600;
    font-size: 0.79rem; /* ← 0.82rem → 0.79rem */
    color: white;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bottom-btn.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #1da851);
}
.bottom-btn.call {
    background: linear-gradient(135deg, var(--call), #c12a76);
}
.bottom-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.bottom-btn i {
    font-size: 1.1rem; /* ← 1.15rem → 1.1rem */
    transition: var(--transition);
}
.bottom-btn:hover i {
    transform: scale(1.2);
}
.bottom-btn:active {
    transform: translateY(0) scale(0.96);
    filter: brightness(0.95);
}
@media (max-width: 480px) {
    .fixed-bottom-bar {
        padding: 4px 8px; /* ← 5px 10px → 4px 8px */
        gap: 6px; /* ← 8px → 6px */
        height: var(--bar-height-mobile);
    }
    .bottom-btn {
        height: 30px; /* ← 32px → 30px */
        font-size: 0.76rem; /* ← 0.78rem → 0.76rem */
        gap: 5px;
        max-width: 125px; /* ← 130px → 125px */
    }
    .bottom-btn i {
        font-size: 1.05rem; /* ← 1.1rem → 1.05rem */
    }
}
/* ================== UTILITIES ================== */
.section-title {
    text-align: center;
    margin: 3rem 0 1.9rem; /* ← 3.5rem 2.2rem → 3rem 1.9rem */
    font-size: 2.3rem; /* ← 2.6rem → 2.3rem */
    position: relative;
}
.section-title::after {
    content: '';
    width: 80px; /* ← 90px → 80px */
    height: 4px; /* ← 5px → 4px */
    background: linear-gradient(90deg, var(--primary), var(--accent));
    display: block;
    margin: 13px auto 0; /* ← 16px → 13px */
    border-radius: 3px;
}
.back-to-top {
    position: fixed;
    bottom: 90px; /* ← 95px → 90px */
    right: 18px; /* ← 20px → 18px */
    width: 52px; height: 52px; /* ← 56px → 52px */
    background: linear-gradient(135deg, var(--primary), #c12a76);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px; /* ← 28px → 25px */
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 28px rgba(214, 51, 132, 0.45);
}
/* ================== FOOTER - PREMIUM GLASS ================== */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 10, 25, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    box-shadow: 0 2px 10px rgba(214, 51, 132, 0.4);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

/* Logo in Footer */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(30, 26, 43, 0.6);
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.footer-logo:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(214, 51, 132, 0.3);
    background: rgba(45, 27, 58, 0.8);
}

.footer-logo .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.4);
}

.footer-logo .logo-name,
.footer-logo .logo-surname {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #ff9ec1, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.8px;
    line-height: 1;
}

.footer-logo .logo-surname {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-left: 3px;
}

/* Links */
.footer-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: 0.3s;
    transform: translateX(-50%);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Buttons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
}

.social-btn.call {
    background: linear-gradient(135deg, var(--primary), #c12a76);
}

.social-btn.email {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: 0.5s;
    transform: translate(-50%, -50%);
}

.social-btn:hover::before {
    width: 300%; height: 300%;
}

/* Copyright */
.footer-copyright {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-copyright strong {
    color: var(--accent);
    font-weight: 700;
}

.footer-copyright .heart {
    color: #ff6b9d;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Auto Year Update */
#year {
    font-weight: 700;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.8rem;
        margin-top: 5rem;
    }

    .footer-content {
        gap: 1.8rem;
    }

    .footer-logo {
        padding: 7px 12px;
        gap: 8px;
    }

    .footer-logo .logo-icon {
        width: 40px; height: 40px;
        font-size: 1.25rem;
    }

    .footer-logo .logo-name,
    .footer-logo .logo-surname {
        font-size: 1.45rem;
    }

    .footer-links {
        gap: 1.4rem;
        flex-direction: column;
    }

    .footer-links a {
        font-size: 0.92rem;
    }

    .social-btn {
        width: 40px; height: 40px;
        font-size: 1.2rem;
    }

    .footer-copyright {
        font-size: 0.86rem;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo-name,
    .footer-logo .logo-surname {
        font-size: 1.35rem;
    }

    .footer-links {
        gap: 1.2rem;
    }

    .footer-copyright p {
        padding: 0 1rem;
    }
}
/* ================== PRICING TABLE - MODERN GLASS ================== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--text);
}

.pricing-table thead {
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.2), rgba(255, 107, 157, 0.15));
    backdrop-filter: blur(8px);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    font-weight: 600;
}

.pricing-table th {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    background: rgba(20, 20, 20, 0.6);
    position: sticky;
    top: 0;
    z-index: 10;
}

.pricing-table tbody tr {
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: rgba(214, 51, 132, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody tr:nth-child(even):hover {
    background: rgba(214, 51, 132, 0.1);
}

/* First Column - Feature Name */
.pricing-table td:first-child,
.pricing-table th:first-child {
    text-align: left;
    font-weight: 700;
    color: #f0f0f0;
    background: rgba(20, 20, 20, 0.5) !important;
    position: sticky;
    left: 0;
    z-index: 9;
}

/* Highlighted Price */
.pricing-table .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.3em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Best Value Badge */
.pricing-table th span.badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .table-responsive {
        margin: 1.5rem 0;
        padding: 2px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.85rem 0.8rem;
        font-size: 0.92rem;
    }

    .pricing-table th {
        font-size: 1rem;
    }

    .pricing-table .highlight {
        font-size: 1.15em;
    }

    .pricing-table td:first-child,
    .pricing-table th:first-child {
        font-size: 0.88rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.6rem;
        font-size: 0.86rem;
    }

    .pricing-table .highlight {
        font-size: 1.1em;
    }

    .pricing-table th span.badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

/* ================== FAQ ACCORDION - GLASS + ANIMATED ================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    background: rgba(20, 20, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 12px 32px rgba(214, 51, 132, 0.25);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.6s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.15), rgba(255, 107, 157, 0.1));
    color: var(--accent);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
    content: '+';
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: #fff;
}

.accordion-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.3);
}

.accordion-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-body {
    padding: 1.2rem 1.4rem;
    background: rgba(10, 10, 10, 0.4);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.7;
    backdrop-filter: blur(8px);
}

/* First item open by default */
.accordion-item:first-of-type .accordion-button {
    border-radius: var(--radius) var(--radius) 0 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Highlight Question Number */
.accordion-button strong {
    color: var(--accent);
    font-weight: 900;
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-accordion {
        margin: 2rem 0;
        gap: 0.9rem;
    }

    .accordion-button {
        padding: 1rem 1.1rem;
        font-size: 0.98rem;
        gap: 10px;
    }

    .accordion-button::after {
        font-size: 1.5rem;
    }

    .accordion-body {
        padding: 1rem 1.1rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .accordion-button {
        padding: 0.9rem 1rem;
        font-size: 0.94rem;
    }

    .accordion-body {
        padding: 0.9rem 1rem;
        font-size: 0.89rem;
    }
}
/* ================== TAGS - SMALL, COLORFUL, COMPACT ================== */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    margin: 0.8rem 0; /* ← 1.8rem → 0.8rem (kam kiya) */
    padding: 0 0.8rem;
    font-size: 0.78rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.78rem;
    font-weight: 600;
    font-size: 0.76rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

/* === COLORFUL GRADIENTS (Auto-cycle for 20+ tags) === */
.tag:nth-child(8n+1) { background: linear-gradient(135deg, #ff6b9d, #d63384); }
.tag:nth-child(8n+2) { background: linear-gradient(135deg, #25D366, #1da851); }
.tag:nth-child(8n+3) { background: linear-gradient(135deg, #6c1d45, #9d174d); }
.tag:nth-child(8n+4) { background: linear-gradient(135deg, #ff9ec1, #ff6b9d); }
.tag:nth-child(8n+5) { background: linear-gradient(135deg, #e91e63, #c12a76); }
.tag:nth-child(8n+6) { background: linear-gradient(135deg, #9c27b0, #7b1fa2); }
.tag:nth-child(8n+7) { background: linear-gradient(135deg, #ff5722, #e64a19); }
.tag:nth-child(8n+8) { background: linear-gradient(135deg, #00bcd4, #0097a7); }

/* Hover Shine */
.tag::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: 0.5s;
}
.tag:hover::before { left: 100%; }

.tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
    border-color: #fff;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .tags-container {
        gap: 0.4rem;
        margin: 0.7rem 0; /* ← 1.5rem → 0.7rem */
        padding: 0 0.6rem;
    }
    .tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.74rem;
    }
}

@media (max-width: 480px) {
    .tags-container { 
        gap: 0.35rem;
        margin: 0.6rem 0; /* ← 1.5rem → 0.6rem */
    }
    .tag {
        padding: 0.32rem 0.65rem;
        font-size: 0.72rem;
        border-radius: 40px;
    }
}