/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (CSS VARIABLES)
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-primary-dark: hsl(222, 47%, 12%);     /* Dominant Deep Navy Blue */
    --clr-primary: hsl(222, 47%, 18%);          /* Deep Corporate Medical Blue */
    --clr-secondary: hsl(187, 72%, 40%);        /* Healing Mind-Care Teal */
    --clr-secondary-light: hsl(187, 72%, 95%);  /* Calming Light Teal Tint */
    
    --clr-accent-whatsapp: hsl(142, 70%, 45%);  /* Official WhatsApp Emerald Green */
    --clr-accent-whatsapp-hover: hsl(142, 70%, 38%);
    --clr-accent-call: hsl(207, 90%, 54%);      /* Deep Blue for Phone Call CTA */
    
    --clr-bg-page: hsl(210, 40%, 96%);          /* Clinical soft grey background */
    --clr-bg-card: hsla(0, 0%, 100%, 0.85);     /* Semi-transparent white card */
    --clr-bg-glass: hsla(215, 60%, 98%, 0.75);  /* Glassmorphic elements background */
    
    --clr-text-title: hsl(224, 71%, 12%);       /* Authoritative Charcoal for Main Headings */
    --clr-text-body: hsl(215, 25%, 32%);        /* Soft Clinical Grey-Blue for Paragraphs */
    --clr-text-muted: hsl(215, 16%, 52%);       /* Subtle secondary text color */
    --clr-text-light: hsl(0, 0%, 100%);
    
    /* Shadows & Border Radii */
    --shadow-sm: 0 2px 8px rgba(12, 28, 60, 0.05);
    --shadow-md: 0 8px 24px rgba(12, 28, 60, 0.08);
    --shadow-lg: 0 16px 40px rgba(12, 28, 60, 0.12);
    --shadow-glow: 0 0 25px rgba(187, 72, 40, 0.3);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Typography */
    --font-family-headings: 'Outfit', sans-serif;
    --font-family-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & SYSTEM BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family-body);
    background-color: var(--clr-bg-page);
    color: var(--clr-text-body);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

/* App Canvas Wrapper (Centers the card on desktop and lets it sit naturally on mobile) */
.app-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(220, 235, 250, 0.6) 0%, rgba(240, 245, 252, 0.4) 100%);
    position: relative;
    padding: 20px 0;
}

/* Premium Desktop Frame Simulation */
.card-wrapper {
    width: 100%;
    max-width: 480px; /* Golden standard width for mobile apps/cards */
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

/* Make card wrapper responsive for direct mobile views */
@media (max-width: 480px) {
    .app-container {
        padding: 0;
    }
    .card-wrapper {
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--clr-text-title);
    font-weight: 700;
}

/* ==========================================================================
   REVEAL ON SCROLL CLASSES
   ========================================================================== */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 40px 24px 30px 24px;
    text-align: center;
    color: var(--clr-text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 28, 60, 0.88) 0%, rgba(18, 38, 76, 0.94) 70%, #0d1e3a 100%);
    z-index: 2;
}

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

/* Clinic Logo */
.logo-container {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: var(--border-radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px auto;
    box-shadow: var(--shadow-md), 0 0 0 6px rgba(255, 255, 255, 0.15);
    transition: transform var(--transition-normal);
}

.clinic-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.logo-container:hover {
    transform: rotate(5deg) scale(1.05);
}

/* Clinic Titles */
.clinic-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.clinic-title .highlight {
    color: var(--clr-secondary);
    background: linear-gradient(90deg, #24b0c9, #5ce1e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.clinic-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

/* Quick Action Row Buttons */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 12px 6px;
    transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.action-btn .icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    transition: transform var(--transition-normal);
}

.action-btn:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Action Button Theming */
.action-btn.call .icon-wrapper {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}
.action-btn.whatsapp .icon-wrapper {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}
.action-btn.directions .icon-wrapper {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.action-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   UTILITY SHARE BAR
   ========================================================================== */
.share-bar {
    padding: 8px 16px;
    background: var(--clr-primary-dark);
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.share-trigger-btn {
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-family-body);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.share-trigger-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   SECTION STANDARD HEADINGS
   ========================================================================== */
section {
    padding: 36px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: var(--font-family-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-secondary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-text-title);
    letter-spacing: -0.2px;
}

.header-divider {
    width: 40px;
    height: 3px;
    background: var(--clr-secondary);
    margin: 8px auto 0 auto;
    border-radius: var(--border-radius-full);
}

/* ==========================================================================
   MEET OUR EXPERTS SECTION
   ========================================================================== */
.doctors-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-card {
    background: var(--clr-bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: row;
    padding: 16px;
    gap: 16px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.doctor-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.doctor-img-wrapper {
    width: 100px;
    height: 120px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    padding: 4px 2px;
    text-transform: uppercase;
}

.specialty-badge.psychiatrist {
    background: rgba(12, 28, 60, 0.85);
}

.specialty-badge.gynecologist {
    background: rgba(187, 72, 40, 0.85);
    background: linear-gradient(135deg, rgba(222, 53, 126, 0.85), rgba(187, 72, 40, 0.85));
}

.doctor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.doctor-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.doctor-credentials {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-secondary);
    margin-bottom: 4px;
}

.doctor-role {
    font-size: 0.75rem;
    color: var(--clr-text-body);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* Tags details */
.doctor-focus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.focus-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(12, 28, 60, 0.05);
    padding: 3px 8px;
    border-radius: var(--border-radius-full);
}

/* Visiting Consultant Compact Card */
.visiting-consultant-card {
    background: linear-gradient(135deg, #0d1e3a 0%, #152c52 100%);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.visiting-consultant-card:hover {
    transform: translateY(-2px);
}

.vc-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--clr-secondary);
    overflow: hidden;
    flex-shrink: 0;
}

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

.vc-content {
    flex-grow: 1;
}

.vc-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--clr-secondary);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: var(--border-radius-full);
    margin-bottom: 4px;
}

.vc-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.vc-spec {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-secondary-light);
    margin-bottom: 2px;
}

.vc-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* ==========================================================================
   CORE SERVICES SECTION
   ========================================================================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
    align-items: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.service-item:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Custom coloring for each service */
.service-icon.lab {
    background: rgba(36, 176, 201, 0.08);
    color: hsl(187, 72%, 40%);
}
.service-icon.mind {
    background: rgba(12, 28, 60, 0.06);
    color: var(--clr-primary);
}
.service-icon.gyna {
    background: rgba(233, 30, 99, 0.08);
    color: #e91e63;
}
.service-icon.packages {
    background: rgba(76, 175, 80, 0.08);
    color: #4caf50;
}

.service-details h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.service-details p {
    font-size: 0.78rem;
    color: var(--clr-text-body);
    line-height: 1.4;
}

/* ==========================================================================
   BOOKING & ADDRESS SECTION (THE CONVERSION ENGINE)
   ========================================================================== */
.booking-contact-section {
    background: hsla(215, 60%, 98%, 0.5);
}

/* Booking Card with Action pulse */
.appointment-card {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}

.cta-prompt {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 16px;
}

.primary-cta-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 16px 20px;
    background: var(--clr-accent-whatsapp);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-full);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.primary-cta-btn:hover {
    background: var(--clr-accent-whatsapp-hover);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

/* Pulse animation for appointment booking CTA */
.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    border: 3px solid rgba(76, 175, 80, 0.5);
    animation: ring-pulse 1.8s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Address Switcher Interface */
.address-switcher-container {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.address-switcher-container h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.address-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: var(--clr-bg-page);
    padding: 4px;
    border-radius: var(--border-radius-full);
    margin-bottom: 20px;
}

.tab-trigger {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-family-body);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    color: var(--clr-text-body);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.tab-trigger.active {
    background: #ffffff;
    color: var(--clr-primary);
    box-shadow: var(--shadow-sm);
}

/* Tab Panes */
.tab-panes {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fade-in var(--transition-normal) forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.detail-icon {
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--clr-text-body);
}

.map-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--clr-secondary-light);
    color: var(--clr-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    transition: background var(--transition-fast), color var(--transition-fast);
    border: 1px solid rgba(187, 72, 40, 0.08);
}

.map-action-btn:hover {
    background: var(--clr-secondary);
    color: #ffffff;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.clinic-footer {
    background: var(--clr-primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 30px 20px;
    text-align: center;
    border-bottom: none;
}

.social-connect {
    margin-bottom: 24px;
}

.social-connect h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.social-icon:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-bottom {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.copyright {
    margin-bottom: 6px;
}

.agency-watermark {
    font-size: 0.72rem;
    font-weight: 600;
}

.agency-watermark a {
    color: var(--clr-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.agency-watermark a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   SHARE DYNAMIC DIALOG MODAL
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 28, 60, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 400px;
    padding: 24px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--clr-text-title);
}

.modal h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.share-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.share-opt-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--clr-bg-page);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    padding: 16px 8px;
    cursor: pointer;
    font-family: var(--font-family-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-text-title);
    gap: 8px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.share-opt-btn:hover {
    background: var(--clr-secondary-light);
    transform: translateY(-2px);
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-icon.wa {
    background: rgba(76, 175, 80, 0.1);
    color: var(--clr-accent-whatsapp);
}

.share-icon.copy {
    background: rgba(33, 150, 243, 0.1);
    color: var(--clr-accent-call);
}

/* Toast alert notification */
.toast {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--clr-primary-dark);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    opacity: 0;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    pointer-events: none;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.toast.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
