/* ==========================================================================
   ICA Asset Management - Redesigned Stylesheet (Full Dermix Layout Copy)
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    --primary-navy: #1D2336;
    --primary-navy-rgb: 29, 35, 54;
    --primary-gold: #B9852A;
    --primary-gold-rgb: 185, 133, 42;
    --primary-gold-hover: #9C6E20;
    --bg-cream: #F6F5F0;
    --bg-white: #FFFFFF;
    --text-charcoal: #1E293B;
    --text-muted: #64748B;
    --border-light: rgba(185, 133, 42, 0.15);
    --border-gray: #E2E8F0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 15px 35px rgba(29, 35, 54, 0.06);
    --shadow-premium: 0 25px 50px rgba(29, 35, 54, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-charcoal);
    background-color: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.text-white {
    color: #ffffff;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-navy {
    background-color: var(--primary-navy);
}

.bg-charcoal {
    background-color: #121622;
}

/* Common Section Header Component */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--primary-gold);
}

.text-center .section-subtitle {
    padding-left: 0;
}

.text-center .section-subtitle::before {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
    font-weight: 800;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 15px auto 25px auto;
}

.title-divider-left {
    width: 50px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 15px 0 25px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.btn-gold:hover {
    background-color: var(--primary-navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 35, 54, 0.15);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary-navy);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline-navy {
    background-color: transparent;
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.btn-outline-navy:hover {
    background-color: var(--primary-navy);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Theme Preloader */
.theme-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(185, 133, 42, 0.1);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: rotatePreloader 1.5s infinite linear;
}

#loading-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

#loading-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

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

/* Magic Cursor Styles */
#magic-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

#ball {
    width: 6px;
    height: 6px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

#magic-cursor.hovering {
    width: 50px;
    height: 50px;
    background-color: rgba(185, 133, 42, 0.12);
    border-color: transparent;
}

#magic-cursor.hovering #ball {
    width: 0;
    height: 0;
}

@media (hover: none) and (pointer: coarse) {
    #magic-cursor {
        display: none !important;
    }
}

/* Topbar Styling */
.topbar {
    background-color: #121622;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left a {
    color: var(--primary-gold);
}

.topbar-left a:hover {
    color: #ffffff;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-links a {
    margin-left: 15px;
    font-weight: 500;
}

.topbar-links a:hover {
    color: var(--primary-gold);
}

.topbar-socials {
    display: flex;
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

.topbar-socials a {
    color: rgba(255, 255, 255, 0.7);
}

.topbar-socials a:hover {
    color: var(--primary-gold);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--primary-navy);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 75px;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-navy);
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.header.scrolled .brand-title {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-charcoal);
    padding: 8px 0;
    position: relative;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary-gold);
}

.header.scrolled .nav-link:hover, 
.header.scrolled .nav-link.active {
    color: var(--primary-gold);
}

.nav-cta-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.nav-cta-btn:hover {
    background-color: var(--primary-gold) !important;
    color: #ffffff !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.header.scrolled .mobile-toggle .bar {
    background-color: #ffffff;
}

/* Section 1: Hero Banner (Dermix Replicated Layout) */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%;
    background-position: center;
    background-size: cover;
    will-change: transform;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 35, 54, 0.94) 0%, rgba(29, 35, 54, 0.6) 100%);
    z-index: 2;
}

.hero-container-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.hero-grid-two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text-col {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(185, 133, 42, 0.15);
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Play Button next to Call CTAs (Dermix style) */
.hero-video-inline-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-video-play {
    width: 54px;
    height: 54px;
    background-color: var(--primary-gold);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding-left: 3px;
    transition: var(--transition-smooth);
}

.hero-video-inline-trigger:hover .btn-video-play {
    background-color: #ffffff;
    color: var(--primary-gold);
    transform: scale(1.08);
}

.video-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Right side Portrait card */
.hero-featured-portrait-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 480px;
    margin: 0 auto;
    border-radius: 200px 30px 200px 30px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-featured-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-trust-badge {
    position: absolute;
    bottom: 30px;
    left: -15px;
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(185, 133, 42, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.floating-trust-badge i {
    font-size: 1.5rem;
}

/* Hero Trust Strip Overlay */
.hero-trust-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-cream);
    z-index: 4;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 22px 0;
    text-align: center;
}

.trust-item {
    border-right: 1px solid rgba(29, 35, 54, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-item:last-child {
    border-right: none;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Video Modal Overlay */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 22, 34, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    outline: none;
}

.video-modal-close:hover {
    color: var(--primary-gold);
}

.video-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Section 2: About Us */
.about-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-collage-col {
    position: relative;
}

.collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    margin: 0 auto;
}

.collage-dot-pattern {
    position: absolute;
    left: -25px;
    top: -25px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(rgba(185, 133, 42, 0.3) 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 1;
}

.collage-img-box {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 6px solid var(--bg-white);
    background-color: var(--bg-white);
}

.collage-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-main {
    right: 0;
    top: 0;
    width: 78%;
    height: 78%;
    z-index: 3;
}

.img-main img {
    object-fit: contain;
}

.img-sub {
    left: -20px;
    bottom: 0;
    width: 60%;
    height: 58%;
    z-index: 2;
}

.collage-floating-badge {
    position: absolute;
    right: -10px;
    bottom: 60px;
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(185, 133, 42, 0.3);
    z-index: 4;
    text-align: center;
    line-height: 1.2;
}

.collage-floating-badge .badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.collage-floating-badge .badge-txt {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-desc {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.about-sub-desc {
    color: var(--text-charcoal);
    margin-bottom: 30px;
}

.about-info-boxes-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.about-info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-box-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(185, 133, 42, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-box-text h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.info-box-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-gray);
    padding-top: 30px;
}

.founder-signature-box {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.sig-name {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.sig-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section 3: Our Services (Replicated Dermix Layout) */
.services-grid-wrapper-dermix {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 30px;
}

.services-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-dermix {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-dermix::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #151a29 100%);
    z-index: 1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 16px;
}

.service-card-dermix:hover::before {
    height: 100%;
}

.service-card-dermix > * {
    position: relative;
    z-index: 2;
}

.card-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--bg-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.service-card-dermix:hover .card-icon-box {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.service-card-dermix h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card-dermix p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    transition: color 0.3s;
}

.service-card-dermix:hover h3, 
.service-card-dermix:hover p {
    color: #ffffff;
}

.card-arrow-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.card-arrow-link i {
    font-size: 0.72rem;
    transition: transform 0.3s;
}

.service-card-dermix:hover .card-arrow-link {
    color: var(--primary-gold);
}

.service-card-dermix:hover .card-arrow-link i {
    transform: translateX(4px);
}

/* Featured Poster Card (Right side of Services Grid) */
.services-featured-poster-card {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(29, 35, 54, 0.95) 0%, rgba(29, 35, 54, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.poster-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.poster-tag {
    display: inline-block;
    background-color: var(--primary-gold);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.poster-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.poster-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Second Row Grid (4 columns) */
.second-row-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

/* Section 4: Why Choose Us (curved portrait + stats stack) */
.why-choose-grid-three-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-choose-checklist {
    list-style: none;
    margin: 25px 0 35px 0;
}

.why-choose-checklist li {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-checklist i {
    font-size: 1.1rem;
}

/* Curved Portrait */
.curved-portrait-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 480px;
    margin: 0 auto;
    border-radius: 30px 240px 30px 30px; /* Dermix curved top-right portrait */
    border: 5px solid var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.curved-portrait-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curved-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(29, 35, 54, 0.3) 0%, transparent 100%);
}

/* Vertical Stats Stack */
.stats-box-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.stat-box-number {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-box-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-box-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-top: 5px;
}

/* Section 5: Core Features Circular Layout (Dermix Dark Green Layout) */
.core-features-circular-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    margin-top: 60px;
}

.features-side-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.circular-feature-point {
    display: flex;
    align-items: center;
    gap: 20px;
}

.point-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-gold);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.point-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.point-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.features-center-circle-col {
    display: flex;
    justify-content: center;
}

.features-circle-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.04);
}

.features-center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
}

.circle-rotating-border {
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    border: 2px dashed var(--primary-gold);
    animation: spin 20s infinite linear;
}

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

/* Section 6: Latest Portfolio / Case Studies */
.case-studies-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 3 / 3.8;
}

.case-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 35, 54, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.case-study-card:hover .case-hover-overlay {
    opacity: 1;
}

.case-overlay-content {
    text-align: center;
    padding: 30px;
    color: #ffffff;
}

.case-tag {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-overlay-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.btn-round-icon {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Section 7: Rotating SVG text circle & Experts */
.circular-text-grid-two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.circular-text-widget-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.central-circle-img-box {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.central-circle-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rotating-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: spin 30s infinite linear;
}

.lead-info-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.5;
    margin-bottom: 30px;
}

.expert-quick-card {
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-gold);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-soft);
}

.expert-quick-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.quick-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.expert-quick-card-header h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.expert-quick-card-header span {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quick-card-body {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-charcoal);
    line-height: 1.6;
}

/* Section 8: Meet Our Experts (Doctor Card Layout) */
.team-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.expert-card-dermix {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.expert-card-dermix:hover {
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-gold);
}

.expert-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.expert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.expert-card-dermix:hover img {
    transform: scale(1.04);
}

.expert-social-drawer {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-white);
    box-shadow: 0 10px 30px rgba(29, 35, 54, 0.15);
    display: flex;
    gap: 15px;
    padding: 10px 22px;
    border-radius: 50px;
    z-index: 5;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-card-dermix:hover .expert-social-drawer {
    bottom: 20px;
}

.expert-social-drawer a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 0.95rem;
}

.expert-social-drawer a:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.expert-social-drawer a.profile-flyer-icon-btn {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.expert-social-drawer a.profile-flyer-icon-btn:hover {
    background-color: var(--primary-navy);
}

.expert-info-box {
    padding: 35px;
}

.expert-role {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.expert-info-box h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.expert-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 18px;
}

.expert-card-divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
    margin-bottom: 18px;
}

.expert-bullets {
    list-style: none;
    margin-bottom: 25px;
}

.expert-bullets li {
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.expert-card-ctas {
    display: flex;
    gap: 12px;
}

.btn-card-small {
    flex-grow: 1;
    text-align: center;
    padding: 11px 15px;
    background-color: var(--primary-navy);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(29, 35, 54, 0.1);
}

.btn-card-small:hover {
    background-color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-card-wa {
    background-color: #22C55E;
}

.btn-card-wa:hover {
    background-color: #16A34A;
}

/* Section 9: Pricing Plans */
.pricing-grid-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.featured-plan {
    background-color: var(--primary-navy);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-premium);
}

.plan-badge {
    display: inline-block;
    background-color: rgba(185, 133, 42, 0.15);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.badge-featured {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.price-box {
    margin-bottom: 12px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-target {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.pricing-divider {
    height: 1px;
    background-color: var(--border-gray);
    margin-bottom: 25px;
}

.featured-plan .pricing-divider {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-features li i.disabled {
    color: #EF4444;
}

/* Section 10: FAQ Accordion with Curved Image */
.faq-grid-two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.faq-curved-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 480px;
    margin: 0 auto;
    border-radius: 200px 30px 30px 200px; /* Dermix curved left layout */
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.faq-curved-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-badge-floating {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(185, 133, 42, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Section 11: Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-gray);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-gold);
}

.testimonial-stars {
    color: var(--primary-gold);
    font-size: 0.85rem;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text-charcoal);
    line-height: 1.75;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-gray);
    padding-top: 25px;
}

.user-avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: rgba(185, 133, 42, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.user-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.quote-watermark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: rgba(185, 133, 42, 0.05);
    line-height: 1;
    pointer-events: none;
}

/* Section 12: Latest Blog Articles */
.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-gold);
}

.news-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-gold);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
}

.news-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.news-info h4 {
    font-size: 1.15rem;
    line-height: 1.35;
}

.news-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.news-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-read-more:hover {
    color: var(--primary-gold);
}

/* Section 13: Contact & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 40px;
}

.office-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.office-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.office-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.office-card-header h4 {
    font-size: 1.1rem;
    color: #ffffff;
}

.address-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}

.contact-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-numbers a {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 8px 16px;
    border-radius: 50px;
}

.contact-numbers a:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
}

.general-email-link {
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-col {
    background-color: var(--bg-white);
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
}

.form-title {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.required {
    color: #EF4444;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-charcoal);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(185, 133, 42, 0.12);
}

.form-status-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.form-status-msg.success {
    color: #16A34A;
}

.form-status-msg.error {
    color: #DC2626;
}

/* Dual Maps Container */
.maps-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 60px;
}

.map-box {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.map-label {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-label i {
    color: var(--primary-gold);
}

.iframe-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-img-small {
    height: 60px;
    border-radius: 4px;
}

.footer-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 12px;
}

.footer-about-short {
    font-size: 0.85rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-links-list {
    list-style: none;
}

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

.footer-links-list a {
    font-size: 0.88rem;
    color: #9CA3AF;
}

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

.small-address-footer {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 12px;
}

.social-links-row {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links-row a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #ffffff;
}

.social-links-row a:hover {
    background-color: var(--primary-gold);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0b0f19;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.8rem;
    color: #6B7280;
}

.seo-keywords-line {
    font-size: 0.72rem;
    color: #4b5563;
    max-width: 600px;
    text-align: right;
    line-height: 1.4;
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: wa-pulse 2s infinite;
}

.whatsapp-floating-widget:hover {
    background-color: #20BA5A;
    transform: scale(1.08) rotate(8deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #1E293B;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: var(--shadow-soft);
}

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

/* Animations & Reveal Engine */
.fade-up-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes wa-pulse {
    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);
    }
}

/* Responsive Styles */

@media (max-width: 1024px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid-two-col {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text-col {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .about-grid-two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-collage-col {
        order: -1;
    }
    
    .services-grid-wrapper-dermix {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .featured-poster-col {
        grid-column: span 2;
    }
    
    .services-featured-poster-card {
        min-height: 320px;
    }
    
    .second-row-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid-three-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image-col {
        order: -1;
    }
    
    .core-features-circular-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-side-col {
        gap: 30px;
    }
    
    .circular-feature-point {
        flex-direction: column;
        text-align: center;
    }
    
    .left-side .circular-feature-point {
        flex-direction: column;
    }
    
    .point-text.text-right, 
    .point-text.text-left {
        text-align: center;
    }
    
    .case-studies-grid-wrapper {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .circular-text-grid-two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-grid-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-grid-three-col {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .faq-grid-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image-col {
        order: -1;
    }
    
    .latest-news-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--primary-navy);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.1rem;
    }
    
    .header.scrolled .nav-link {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .nav-cta-btn {
        margin-top: 10px;
        width: 80%;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-section {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-animated-logo-container {
        width: 240px;
        height: 240px;
        margin: 30px auto;
    }

    .hero-circle-image-wrapper {
        width: 220px;
        height: 220px;
        padding: 12px;
    }

    .hero-circle-rotating-border {
        top: -6px;
        left: -6px;
        width: calc(100% + 12px);
        height: calc(100% + 12px);
        border-width: 2px;
    }

    .floating-trust-badge {
        bottom: 0px;
        left: -10px;
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-featured-portrait-wrapper {
        height: 380px;
        max-width: 320px;
    }
    
    .collage-wrapper {
        height: 380px;
        max-width: 360px;
    }
    
    .collage-dot-pattern {
        width: 100px;
        height: 100px;
        left: -15px;
        top: -15px;
    }
    
    .collage-floating-badge {
        bottom: 30px;
        right: -5px;
        padding: 10px 14px;
    }
    
    .collage-floating-badge .badge-num {
        font-size: 1.4rem;
    }
    
    .collage-floating-badge .badge-txt {
        font-size: 0.65rem;
    }
    
    .about-footer-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .founder-signature-box {
        text-align: center;
    }
    
    .services-grid-wrapper-dermix {
        grid-template-columns: 1fr;
    }
    
    .featured-poster-col {
        grid-column: span 1;
    }
    
    .second-row-grid {
        grid-template-columns: 1fr;
    }
    
    .curved-portrait-wrapper {
        height: 380px;
        max-width: 280px;
    }
    
    .circular-text-widget-wrapper {
        width: 260px;
        height: 260px;
    }
    
    .central-circle-img-box {
        width: 160px;
        height: 160px;
        top: 50px;
        left: 50px;
    }
    
    .faq-curved-img-wrapper {
        height: 380px;
        max-width: 320px;
    }
    
    .footer-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .seo-keywords-line {
        text-align: center;
    }
}

/* ==========================================================================
   Section: Leadership Bio Styles
   ========================================================================== */
.experts-bio-section {
    background-color: var(--bg-white);
}

.bio-grid-two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.bio-text-widget-wrapper {
    position: relative;
    width: 450px;
    height: 500px;
    margin: 0 auto;
}

.bio-central-circle-img-box {
    position: absolute;
    top: 40px;
    left: 65px;
    width: 320px;
    height: 420px;
    border-radius: 160px;
    overflow: hidden;
    border: 6px solid var(--bg-white);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.bio-central-circle-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-rotating-svg-container {
    position: absolute;
    top: 25px;
    left: 0;
    width: 450px;
    height: 450px;
    z-index: 1;
}

.lead-bio-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 5px;
}

.bio-items-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.bio-item-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.bio-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bio-item-row:hover {
    transform: translateX(5px);
}

.bio-item-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--primary-gold);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.bio-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-item-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-navy);
}

.bio-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio-item-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsiveness overrides for Leadership Bio */
@media (max-width: 1024px) {
    .bio-grid-two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .bio-svg-col {
        order: -1;
    }
}

@media (max-width: 768px) {
    .bio-text-widget-wrapper {
        width: 260px;
        height: 260px;
    }
    
    .bio-central-circle-img-box {
        width: 170px;
        height: 220px;
        border-radius: 85px;
        top: 20px;
        left: 45px;
    }
    
    .bio-rotating-svg-container {
        width: 260px;
        height: 260px;
        top: 0;
    }
    
    .bio-item-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bio-item-row:hover {
        transform: none;
    }
}

/* Hero Section Circular Animated Logo */
.hero-animated-logo-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-premium);
}

.hero-center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
}

.hero-circle-rotating-border {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    border: 3px dashed var(--primary-gold);
    animation: spin 20s infinite linear;
}
