@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Professional Medical Premium Palette (ui-ux-pro-max generated) */
    --brand-900: #0891B2;
    /* Cyan 600 */
    --brand-700: #06B6D4;
    /* Cyan 500 */
    --brand-100: #F0FDFA;
    /* Teal 50 */

    --accent-gold: #C6A15B;
    --accent-gold-soft: rgba(198, 161, 91, 0.2);

    --bg-main: #F8FAF9;
    --bg-card: #FFFFFF;
    --text-main: #134E4A;
    /* Teal 950 */
    --text-muted: #475569;
    /* Slate 600 */

    --glass: rgba(255, 255, 255, 0.7);
    --glass-lux: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(8, 145, 178, 0.1);
    --glass-border-gold: rgba(198, 161, 91, 0.3);

    --shadow-soft: 0 10px 30px rgba(8, 145, 178, 0.05);
    --shadow-lift: 0 20px 40px rgba(8, 145, 178, 0.1);
    --shadow-elite: 0 24px 60px rgba(2, 44, 56, 0.12);

    --gradient-turq: linear-gradient(135deg, #0891B2, #06B6D4);
    --gradient-gold: linear-gradient(135deg, #C6A15B, #E3C184);
    --gradient-grainy: linear-gradient(135deg, #F0FDFA 0%, #E0F2FE 100%);

    --ease-lux: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s var(--ease-lux) forwards;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Figtree', 'Outfit', sans-serif;
    line-height: 1.2;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.glass-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.img-logo {
    max-height: 44px;
    width: auto;
    transition: transform 0.3s var(--ease-lux);
}

.logo:hover .img-logo {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--brand-700);
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.dropbtn {
    background: #fff;
    color: var(--brand-900);
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.lang-dropdown:hover .dropbtn {
    color: var(--brand-700);
    border-color: var(--brand-700);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    /* Align perfectly to trigger bottom */
    background: #ffffff;
    min-width: 200px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1001;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px;
    margin-top: 0;
    /* Remove gap */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Custom Scrollbar for Dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--brand-100);
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--brand-700);
    border-radius: 10px;
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 10px 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: var(--brand-100);
    color: var(--brand-900);
}

/* Pseudo-element to bridge any remaining air gap */
.lang-dropdown::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    display: block;
}

.lang-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Switch to grid on hover */
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: #0f172a;
    padding: 16px 36px;
    min-width: 220px;
    /* Standardize width for better balance */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
    transition: all 0.4s var(--ease-lux);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.3);
    filter: brightness(1.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--accent-gold);
    padding: 16px 36px;
    min-width: 220px;
    /* Standardize width for better balance */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    border: 2px solid var(--accent-gold);
    transition: all 0.4s var(--ease-lux);
    gap: 8px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-gold-soft);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

/* Hero Section 3.0: Split Layout */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-grainy);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* More space for text */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

#hero-3d-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-img-prof {
    width: 110%;
    margin-left: -5%;
    border-radius: 48px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lift);
}


.hero-content {
    z-index: 10;
    text-align: left;
}

.hero-visual {
    position: relative;
    z-index: 5;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-lift);
    border: 8px solid #fff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats-strip {
    background: var(--brand-900);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--brand-100);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Treatment Card Images */
.card-image-wrap {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--brand-100);
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-lux);
}

.treatment-card:hover .card-image-wrap img {
    transform: scale(1.1);
}

/* Global Partners */
.partner-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid var(--glass-border);
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.5s;
}

.logo-grid:hover {
    opacity: 1;
    filter: grayscale(0);
}

.partner-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-muted);
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--brand-100);
    border: 1px solid rgba(42, 140, 140, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 900;
    color: var(--brand-900);
    margin-bottom: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -2px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-turq);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 56px;
    font-weight: 400;
}

/* Cards & Grid Utilities */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .treatment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Minimalist Premium Treatment Cards */
.treatment-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 32px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    height: 100%;
}

.treatment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(14, 75, 89, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
}

.card-image-wrap {
    width: 100%;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 32px;
    background: #f8fafc;
    position: relative;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover .card-image-wrap img {
    transform: scale(1.08);
}

.treatment-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.treatment-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 280px;
}

.vip-step-card {
    text-align: center;
}

.vip-steps {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .vip-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vip-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}


.glass {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-lux);
    box-shadow: var(--shadow-soft);
}

.glass-lux {
    background: var(--glass-lux);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-gold);
    border-radius: 24px;
    box-shadow: var(--shadow-lift);
}

.glass:hover,
.glass-lux:hover {
    transform: translateY(-8px);
    border-color: var(--brand-700);
    box-shadow: var(--shadow-lift);
}

.mb-4 {
    margin-bottom: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.text-secondary {
    color: var(--secondary);
}

.text-muted {
    color: var(--text-muted);
}

.font-bold {
    font-weight: 700;
}

/* Section styling */
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.trust-strip,
.py-section {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Global Utilities */
.py-section {
    padding: 120px 0;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .glass-header {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
        text-align: center;
        background-size: 30px 30px;
    }

    .hero h1 {
        font-size: 36px;
        text-align: center;
        max-width: 100%;
    }

    .hero p {
        text-align: center;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-main-layout {
        flex-direction: column;
        min-height: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .patient-reviews-mini {
        margin: 40px auto 0;
    }

    .hero-doctor-center {
        display: none !important;
    }

    .hero-stats-side {
        display: none !important;
    }

    .treatment-grid {
        grid-template-columns: 1fr !important;
    }

    .dropdown-content {
        min-width: 180px;
        grid-template-columns: 1fr !important;
        right: -30px;
    }

    .py-section {
        padding: 60px 0;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .trust-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Intensive Glassmorphism for Facilities */
.facility-card.glass-lux {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Luxury Dark Footer */
.dark-footer {
    background: #071c21;
    /* Ultra deep turquoise/black */
    padding: 100px 0 60px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-footer h4 {
    color: var(--accent-gold);
}

.dark-footer .text-muted {
    color: rgba(255, 255, 255, 0.6);
}

.dark-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
}

.dark-footer .footer-links a:hover {
    color: var(--accent-gold);
}

/* Why Otemed Refinement */
.why-otemed {
    padding: 120px 0;
}

.feat-icon {
    width: 64px !important;
    /* Scaled down for elegance */
    height: 64px !important;
    background: #fff;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-lux);
}

.trust-feat:hover .feat-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--brand-700);
    box-shadow: var(--shadow-lift);
}

/* Language Directory Grid */
.lang-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-dir-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s;
}

.lang-dir-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

/* Success Stories Refinement */
.avatar-wrap {
    width: 80px !important;
    height: 80px !important;
    border-radius: 25px !important;
    /* Centered Avatar */
    border: 3px solid #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px !important;
    /* Force centering */
}

/* Minimalist Patient Transformations */
.transformation-card {
    background: transparent !important;
    border: none !important;
    padding: 20px !important;
    box-shadow: none !important;
    transition: transform 0.4s var(--ease-lux) !important;
}

.transformation-card:hover {
    transform: translateY(-5px) !important;
}

.avatar-wrap {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    border: 3px solid #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 20px !important;
}

.avatar-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 50% !important;
}

.transformation-card h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--brand-900) !important;
    margin-bottom: 4px !important;
}

.transformation-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: var(--text-muted) !important;
    max-width: 240px !important;
}

/* Global Healing Standards - Minimalist Flow */
.standards-flow {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
}

.standard-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.standard-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-100);
    color: var(--brand-900);
    border-radius: 12px;
}

.standard-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-900);
}

.standard-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .standards-flow {
        flex-direction: column;
        gap: 32px;
    }
}

/* Professional Experience Section Styles */
.prof-experience {
    position: relative;
    z-index: 5;
}

.prof-img-wrap {
    aspect-ratio: 4/5;
    background: #f0f9fb;
}

.exp-badge-overlay {
    min-width: 180px;
}

.prof-experience .signature span {
    font-family: 'DM Serif Display', serif;
    letter-spacing: -1px;
}

/* Enhanced Avatar Framing for Success Stories */
.avatar-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    /* Focus higher on the face */
    border-radius: 50% !important;
}

@media (max-width: 1024px) {
    .exp-badge-overlay {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        margin-top: -40px;
        margin-left: auto;
        margin-right: 20px;
    }
}

/* Appointment Section Styles */
.appointment-section .container {
    max-width: 1200px;
}

.appointment-section input,
.appointment-section select {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 14px;
    font-weight: 500;
}

.appointment-section input:focus,
.appointment-section select:focus {
    border-color: var(--brand-700) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1) !important;
}

.appointment-section label {
    font-size: 11px;
    letter-spacing: 0.05em;
}

.appointment-section .btn-primary {
    background: #22d3ee;
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(34, 211, 238, 0.4);
}

.appointment-section .btn-primary:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -5px rgba(8, 145, 178, 0.4);
}

/* Floating Social Sidebar - Expert Medical Concierge */
.floating-social {
    position: fixed !important;
    right: 20px !important;
    bottom: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 9999 !important;
    width: auto !important;
    padding-bottom: constant(safe-area-inset-bottom);
    /* iOS support */
    padding-bottom: env(safe-area-inset-bottom);
}

.social-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--ease-lux);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.messenger {
    background: #0084FF;
}

.social-btn.telegram {
    background: #0088CC;
}

/* Footer Social Icons - Refined */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.3s var(--ease-lux);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--accent-gold);
    color: #071c21 !important;
    /* High contrast on gold */
    transform: translateY(-4px) rotate(8deg);
    /* Added subtle rotation */
    box-shadow: 0 10px 25px rgba(198, 161, 91, 0.4);
}


/* ==========================================================================
   MEDICAL LUXE STABLE & REFINED (Antigravity Verified)
   ========================================================================== */

:root {
    --mx-primary: #0891B2;
    --mx-secondary: #0EA5E9;
    --mx-cta: #0891B2;
    /* Unified brand color */
    --mx-soft: #F0F9FB;
    --mx-white: #ffffff;
    --mx-ink: #0F172A;
    --mx-slate-600: #475569;
    --mx-shadow: 0 30px 60px rgba(8, 145, 178, 0.12);
    --mx-shadow-soft: 0 12px 30px rgba(8, 145, 178, 0.08);
}

/* Section-wide typography stabilization */
[id="prof-experience"],
[id="patient-transformations"],
[id="appointment"],
.why-otemed-luxe {
    font-family: 'Noto Sans', sans-serif !important;
}

[id="prof-experience"] h2,
[id="patient-transformations"] h2,
[id="appointment"] h2,
.why-otemed-luxe .luxe-title {
    font-family: 'Figtree', sans-serif !important;
}

/* Professional Doctors Section - STABLE FIXED */
.medluxe-image-shell {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--mx-shadow);
    background: var(--mx-soft);
}

.medluxe-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 145, 178, .02) 0%, rgba(8, 145, 178, .15) 100%);
    pointer-events: none;
}

/* FIX: Explicit dimensions to prevent "Massive Teal Shape" blowup */
.medluxe-exp-badge {
    position: absolute !important;
    z-index: 20 !important;
    width: 180px !important;
    max-width: 180px !important;
    padding: 1.5rem !important;
    background: linear-gradient(135deg, var(--mx-primary), #06B6D4) !important;
    color: #ffffff !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.3) !important;
    text-align: center !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-sizing: border-box !important;
}

.badge-icon-wrap {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 0.75rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.badge-icon-wrap svg {
    width: 20px !important;
    height: 20px !important;
    color: #ffffff !important;
    display: block !important;
}

.medluxe-feature {
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    color: var(--mx-ink) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.6rem 0 !important;
}

.medluxe-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: var(--mx-primary) !important;
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1) !important;
    flex-shrink: 0 !important;
}

/* Success Stories - REFINED CARDS */
.medluxe-testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(8, 145, 178, 0.06) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem 1.5rem !important;
    text-align: center !important;
    transition: all 0.4s var(--ease-lux) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.medluxe-testimonial-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(8, 145, 178, 0.15) !important;
    box-shadow: var(--mx-shadow-soft) !important;
}

.medluxe-avatar {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.1) !important;
    margin-bottom: 1.25rem !important;
    display: block !important;
}

/* Global Healing Standards - AIRY FLOW */
.why-otemed-luxe {
    padding: 120px 0;
    background: radial-gradient(circle at 100% 0%, rgba(8, 145, 178, 0.05), transparent 40%), #ffffff;
}

.luxe-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.standards-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    list-style: none;
}

.flow-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-marker {
    width: 32px;
    height: 32px;
    background: var(--mx-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Appointment Section - PREMIUM BOOKING */
.medluxe-appointment-shell {
    border-radius: 2rem !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: var(--mx-shadow) !important;
}

.medluxe-label {
    display: block !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: var(--mx-ink) !important;
    margin-bottom: 0.5rem !important;
}

.medluxe-input {
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    background: #f8fafc !important;
    border-radius: 0.85rem !important;
    transition: all 0.3s !important;
    outline: none !important;
    font-size: 0.95rem !important;
}

.medluxe-input:focus {
    background: #ffffff !important;
    border-color: var(--mx-primary) !important;
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1) !important;
}

.medluxe-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 145, 178, 0.2);
}

/* MINI BADGE STABILIZATION */
.medluxe-mini-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 999px !important;
    background: rgba(8, 145, 178, 0.08) !important;
    color: var(--mx-primary) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    border: 1px solid rgba(8, 145, 178, 0.15) !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    z-index: 10 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.medluxe-mini-badge .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--mx-primary) !important;
}

/* Ensure no overlap on text */
[id="prof-experience"] h2 {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

[id="prof-experience"] p {
    margin-bottom: 2rem !important;
}

.medluxe-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(2, 44, 56, 0.15);
}

.treatment-card-luxe {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 40px;
    padding: 48px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 100%;
}

.treatment-card-luxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.6s var(--ease-lux);
}

.treatment-card-luxe:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: rgba(198, 161, 91, 0.3);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.treatment-card-luxe:hover::before {
    opacity: 1;
}

.card-num-luxe {
    font-size: 80px;
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -10px;
    color: var(--mx-primary);
    opacity: 0.05;
    transition: opacity 0.6s var(--ease-lux);
    pointer-events: none;
}

.treatment-card-luxe:hover .card-num-luxe {
    opacity: 0.15;
}

.luxe-list-item {
    position: relative;
    padding-left: 28px;
    transition: all 0.3s var(--ease-lux);
}

.luxe-list-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    opacity: 0.5;
    transition: all 0.3s var(--ease-lux);
}

.luxe-list-item:hover {
    transform: translateX(8px);
}

.luxe-list-item:hover::before {
    opacity: 1;
    left: 5px;
}

/* ============================================================ */
/* MEDICAL LUXE STATIC CARDS (COMPACT & CENTERED)               */
/* ============================================================ */

.luxe-static-card .card-body {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.luxe-static-card .card-body img {
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.btn-luxe-outline {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), transparent);
    backdrop-filter: blur(8px);
}

.btn-luxe-outline:hover {
    background: var(--mx-primary);
}

/* ============================================================ */
/* TRUST FOOTER CARDS (EXPLICIT CSS)                            */
/* ============================================================ */

.trust-glass-card {
    background: rgba(2, 31, 41, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.trust-glass-card:hover {
    transform: translateY(-8px);
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.15);
}

.trust-glass-line {
    width: 3rem;
    height: 4px;
    background: linear-gradient(90deg, var(--mx-primary), transparent);
    border-radius: 9999px;
    margin-bottom: 2rem;
    transition: width 0.5s ease;
}

.trust-glass-card:hover .trust-glass-line {
    width: 5rem;
}

.trust-glass-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Figtree', sans-serif;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.trust-glass-card:hover .trust-glass-title {
    color: var(--mx-primary);
}

.trust-glass-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.625;
}

/* RESPONSIVENESS FIXES */
@media (max-width: 1024px) {
    .luxe-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .medluxe-exp-badge {
        position: relative;
        top: -40px;
        left: 20px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .medluxe-appointment-shell .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Prevent Social Sidebar Overlap */
.container,
section {
    padding-right: 20px;
    /* Base padding */
}

@media (min-width: 1200px) {
    section {
        padding-right: 80px;
        /* Create a 'safe alley' for floating buttons */
    }
}

/* ============================================================ */
/* MEDICAL LUXE 2.0 - REINFORCED LAYOUT GUARDS                  */
/* ============================================================ */

/* Global Image Containment - Preventing "Full Size" Blowouts */
[id^="prof-"],
[id^="patient-"],
[id^="appointment"] img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Force side-by-side container for Large Screens */
.luxe-force-grid {
    display: block !important;
}

@media (min-width: 1024px) {
    .luxe-force-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4rem !important;
        align-items: center !important;
    }

    .luxe-force-grid-4 {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2.5rem !important;
    }
}

/* Doctors Section - Professional Visual Shell */
.medluxe-2-image-box {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 3rem !important;
    overflow: hidden !important;
    background: #f8fafc !important;
    box-shadow: 0 40px 80px -20px rgba(8, 145, 178, 0.15) !important;
    margin: 0 auto !important;
    border: 1px solid rgba(8, 145, 178, 0.1) !important;
}

.medluxe-2-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.medluxe-2-badge {
    position: absolute !important;
    bottom: 2.5rem !important;
    right: 2.5rem !important;
    background: linear-gradient(135deg, var(--mx-primary), #06B6D4) !important;
    color: #fff !important;
    padding: 1.75rem !important;
    border-radius: 2rem !important;
    text-align: center !important;
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.3) !important;
    z-index: 10 !important;
    width: 180px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

/* Success Stories - LUXE V2 CARDS */
.medluxe-2-card {
    background: #ffffff !important;
    border: 1px solid rgba(8, 145, 178, 0.08) !important;
    border-radius: 2.5rem !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: 100% !important;
}

.medluxe-2-card:hover {
    transform: translateY(-15px) !important;
    border-color: var(--mx-primary) !important;
    box-shadow: 0 50px 100px -25px rgba(8, 145, 178, 0.2) !important;
}

.medluxe-2-avatar {
    width: 110px !important;
    height: 110px !important;
    border-radius: 3rem !important;
    object-fit: cover !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border: 3px solid #fff !important;
}

/* Appointment 2.0 - Split Portal */
.medluxe-2-portal {
    background: #ffffff !important;
    border-radius: 4rem !important;
    overflow: hidden !important;
    box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.15) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
}

@media (min-width: 1024px) {
    .medluxe-2-portal {
        grid-template-columns: 1.1fr 0.9fr !important;
        /* Form larger */
    }
}

.medluxe-2-form-area {
    padding: 5rem 4rem !important;
}

.medluxe-2-visual-area {
    background: #f1f5f9 !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 500px !important;
}


/* ==========================================================================
   MedLuxe Premium Redesign Components (gpt-5.3-codex optimized)
   ========================================================================== */

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Figtree', 'Outfit', sans-serif !important;
}

body,
p,
input,
select,
textarea,
button {
    font-family: 'Noto Sans', 'Inter', sans-serif !important;
}

/* Shared luxury shadows & variables */
:root {
    --mx-primary: #0891B2;
    --mx-secondary: #22D3EE;
    --mx-cta: #D4AF37;
    --mx-gold-dark: #B8860B;
    --mx-gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    --mx-soft: #ECFEFF;
    --mx-shadow: 0 24px 60px rgba(2, 44, 56, 0.12);
    --mx-shadow-soft: 0 14px 32px rgba(8, 145, 178, 0.12);
}

/* Professional Doctors Section Optimized */
.medluxe-image-shell {
    position: relative;
    box-shadow: var(--mx-shadow);
    transition: transform 0.8s var(--ease-lux);
}

.medluxe-image-shell:hover {
    transform: scale(1.01);
}

.medluxe-image-overlay {
    background: linear-gradient(180deg, rgba(8, 145, 178, .04) 0%, rgba(8, 145, 178, .22) 100%);
}

.medluxe-exp-badge {
    background: linear-gradient(140deg, #0891B2 0%, #22D3EE 100%);
    box-shadow: 0 16px 34px rgba(8, 145, 178, .35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 20;
}

.medluxe-feature {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #0f172a;
    font-weight: 600;
    font-size: .95rem;
}

.medluxe-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #0891B2, #22D3EE);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, .15);
}

/* Success Stories / Testimonials Centered Avatars */
.medluxe-testimonial-card {
    background: #fff;
    border: 1px solid rgba(8, 145, 178, .10);
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.medluxe-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 145, 178, .25);
    box-shadow: var(--mx-shadow-soft);
}

.medluxe-avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid #fff;
    box-shadow: 0 8px 22px rgba(8, 145, 178, 0.15);
    transition: transform 0.5s ease;
}

/* Appointment Portal Glassmorphism */
.medluxe-appointment-shell {
    box-shadow: var(--mx-shadow);
    border: 1px solid rgba(8, 145, 178, .10);
    background: #fff;
}

.medluxe-label {
    display: block;
    margin-bottom: .45rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #0f172a;
}

.medluxe-input {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    border-radius: .85rem;
    padding: .78rem .9rem;
    color: #0f172a;
    transition: all .25s ease;
    outline: none;
}

.medluxe-input::placeholder {
    color: #94a3b8;
}

.medluxe-input:focus {
    border-color: rgba(8, 145, 178, .55);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, .20);
}

.medluxe-btn {
    background: var(--mx-gold-gradient, #D4AF37);
    color: #0f172a;
    /* Darker text for contrast on gold */
    font-weight: 800;
    border-radius: 9999px !important;
    box-shadow: 0 10px 24px rgba(184, 134, 11, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.medluxe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(5, 150, 105, .30);
}

.medluxe-glass {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(2, 6, 23, .25);
}

/* ==========================================================================
   Elite Medical Redesign (V3 - Boutique Excellence)
   ========================================================================== */

:root {
    --elite-cyan: #0891B2;
    --elite-emerald: #D4AF37;
    --gold-luxe: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    --elite-glow: rgba(8, 145, 178, 0.15);
    --elite-shadow: 0 32px 80px rgba(2, 44, 56, 0.08);
    --elite-border: rgba(8, 145, 178, 0.08);
}

.elite-badge {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    background: rgba(8, 145, 178, 0.05);
    border: 1px solid rgba(8, 145, 178, 0.1);
    color: var(--elite-cyan);
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    display: inline-block;
}

.precision-care-v3 {
    background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);
}

.elite-doctor-img {
    max-width: 480px !important;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    transition: transform 0.6s var(--ease-lux);
}

.elite-doctor-img:hover {
    transform: translateY(-10px) scale(1.02);
}

.elite-floating-stats {
    position: absolute;
    right: 0;
    bottom: 15%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--elite-border);
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: var(--elite-shadow);
    z-index: 10;
}

.testimonial-elite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-elite-card {
    background: #fff;
    border-radius: 2rem;
    padding: 4rem 2.5rem;
    border: 1px solid var(--elite-border);
    transition: all 0.5s var(--ease-lux);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.testimonial-elite-card:hover {
    transform: translateY(-12px);
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 40px 100px rgba(8, 145, 178, 0.1);
}

.elite-avatar-v2 {
    width: 90px;
    height: 90px;
    border-radius: 1.5rem;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.15);
}

.standard-elite-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    border-radius: 2rem;
    background: #fff;
    border: 1px solid var(--elite-border);
    transition: all 0.4s var(--ease-lux);
    min-height: 280px;
}

.standard-elite-item:hover {
    background: #ECFEFF;
    border-color: var(--elite-cyan);
    transform: translateY(-8px);
}

.elite-icon-box {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #0891B2, #22D3EE);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.2);
}

.elite-icon-box svg {
    width: 36px !important;
    height: 36px !important;
    display: block;
    margin: 0 auto;
}