/**
 * Therapy Practice Pro - Premium Styles v4.5
 * Typography: DM Sans + Cormorant Garamond
 * Mirror Counselling Centre - Enhanced UI/UX
 */

/* GOOGLE FONTS - Already loaded in HTML */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --tpp-primary: #0d9488;
    --tpp-primary-dark: #0f766e;
    --tpp-primary-light: #14b8a6;
    --tpp-secondary: #f59e0b;
    --tpp-secondary-dark: #d97706;
    --tpp-dark: #111827;
    --tpp-text: #374151;
    --tpp-text-light: #6b7280;
    --tpp-light: #f9fafb;
    --tpp-white: #ffffff;
    --tpp-cream: #fefce8;
    --tpp-border: #e5e7eb;
    --tpp-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --tpp-shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
    --tpp-radius: 16px;
    --tpp-radius-sm: 10px;
    --tpp-radius-full: 50px;
    --tpp-font-display: 'Cormorant Garamond', Georgia, serif;
    --tpp-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body, .tpp-body {
    font-family: var(--tpp-font-body) !important;
    font-size: 16px;
    line-height: 1.7;
    color: var(--tpp-text);
    background: var(--tpp-white) !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* Prevent scroll when mobile menu is open */
body.tpp-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, ol { list-style: none; }

/* ============================================
   PREMIUM HEADER
   ============================================ */
.tpp-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.tpp-header.scrolled { 
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98) !important;
}

.tpp-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

/* LOGO - IMAGE BASED */
.tpp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.tpp-logo-img {
    height: 75px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tpp-logo:hover .tpp-logo-img {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Text logo fallback styles */
.tpp-logo-mark {
    flex-shrink: 0;
}

.tpp-logo-mark svg {
    display: block;
}

.tpp-logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.tpp-logo-title {
    font-family: var(--tpp-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tpp-dark);
    letter-spacing: -0.5px;
}

.tpp-logo-tagline {
    font-family: var(--tpp-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tpp-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tpp-logo:hover .tpp-logo-title {
    color: var(--tpp-primary);
}

/* Keep old icon styles for fallback */
.tpp-logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(13,148,136,0.3);
    position: relative;
    overflow: hidden;
}

.tpp-logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.tpp-logo:hover .tpp-logo-icon::before {
    left: 100%;
}

.tpp-logo-text {
    font-family: var(--tpp-font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--tpp-dark);
    letter-spacing: -0.5px;
}

/* Navigation */
.tpp-nav { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}

.tpp-nav a,
.tpp-nav-link {
    font-family: var(--tpp-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--tpp-text);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.tpp-nav a::after,
.tpp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--tpp-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tpp-nav a:hover::after,
.tpp-nav-link:hover::after {
    width: calc(100% - 40px);
}

.tpp-nav a:hover,
.tpp-nav-link:hover { 
    color: var(--tpp-primary);
    background: rgba(13,148,136,0.06);
}

.tpp-header-actions { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
}

.tpp-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--tpp-dark);
    font-size: 0.95rem;
}

.tpp-phone-link svg {
    color: var(--tpp-primary);
}

.tpp-phone-link:hover { color: var(--tpp-primary); }

/* PREMIUM BUTTONS */
.tpp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--tpp-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--tpp-radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tpp-btn-primary {
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    color: var(--tpp-white) !important;
    box-shadow: 0 4px 15px rgba(13,148,136,0.3);
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.tpp-btn-primary svg {
    flex-shrink: 0;
}

.tpp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13,148,136,0.4);
}

.tpp-btn-secondary {
    background: transparent;
    color: var(--tpp-primary) !important;
    border: 2px solid var(--tpp-primary);
}

.tpp-btn-secondary:hover {
    background: var(--tpp-primary);
    color: var(--tpp-white) !important;
}

.tpp-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.tpp-btn-whatsapp svg {
    flex-shrink: 0;
}

.tpp-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.tpp-btn-white {
    background: #fff !important;
    color: var(--tpp-primary) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tpp-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Smaller header button */
.tpp-header-btn {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
}

@media (max-width: 768px) {
    .tpp-header-btn {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
}

.tpp-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

.tpp-mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--tpp-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile toggle active state - X animation */
.tpp-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.tpp-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.tpp-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation Menu - Improved */
@media (max-width: 992px) {
    .tpp-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--tpp-white);
        flex-direction: column;
        padding: 100px 30px 40px;
        z-index: 10000;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .tpp-nav.active {
        display: flex !important;
        transform: translateX(0);
    }
    
    .tpp-nav a,
    .tpp-nav .tpp-nav-link {
        padding: 18px 24px;
        border-bottom: 1px solid var(--tpp-border);
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--tpp-dark);
        display: block;
    }
    
    .tpp-nav a:hover,
    .tpp-nav .tpp-nav-link:hover {
        background: var(--tpp-light);
        color: var(--tpp-primary);
        padding-left: 30px;
    }
    
    .tpp-mobile-toggle {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.tpp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #f0fdfa 0%, var(--tpp-white) 40%, #fef3c7 100%);
    overflow: visible !important;
    width: 100% !important;
}

.tpp-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(13,148,136,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.tpp-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.tpp-hero-content { max-width: 600px; }

.tpp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--tpp-cream) 0%, #fef9c3 100%);
    border-radius: var(--tpp-radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 28px;
    border: 1px solid #fde68a;
}

.tpp-hero-title {
    font-family: var(--tpp-font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--tpp-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.tpp-hero-text {
    font-size: 1.15rem;
    color: var(--tpp-text-light);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.8;
}

/* Experience Highlight */
.tpp-experience-highlight {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    padding: 16px 28px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(13,148,136,0.3);
}

.tpp-exp-number {
    font-family: var(--tpp-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.tpp-exp-number span {
    font-size: 1.8rem;
    vertical-align: super;
}

.tpp-exp-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.tpp-exp-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.tpp-exp-title {
    font-family: var(--tpp-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tpp-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tpp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tpp-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--tpp-white);
    border-radius: var(--tpp-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--tpp-border);
    transition: all 0.3s ease;
}

.tpp-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.tpp-stat-value {
    font-family: var(--tpp-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--tpp-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.tpp-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--tpp-text-light);
}

.tpp-hero-visual { 
    position: relative; 
    overflow: visible !important;
}

.tpp-hero-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.tpp-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.tpp-hero-image-wrap:hover .tpp-hero-image {
    transform: scale(1.02);
}

.tpp-floating-badge {
    position: absolute;
    background: var(--tpp-white);
    padding: 16px 22px;
    border-radius: var(--tpp-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--tpp-dark);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    border: 1px solid var(--tpp-border);
}

.tpp-floating-badge.badge-1 { bottom: 50px; right: 0; transform: translateX(20%); }
.tpp-floating-badge.badge-2 { top: 50px; left: 0; transform: translateX(-20%); animation-delay: 1.5s; }

.tpp-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(20%); }
    50% { transform: translateY(-15px) translateX(20%); }
}

.tpp-floating-badge.badge-2 {
    animation: float2 4s ease-in-out infinite;
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(-20%); }
    50% { transform: translateY(-15px) translateX(-20%); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.tpp-section {
    padding: 100px 40px;
    width: 100%;
}

.tpp-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

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

.tpp-section-label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--tpp-radius-full);
    margin-bottom: 20px;
}

.tpp-section-title {
    font-family: var(--tpp-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--tpp-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.tpp-section-subtitle {
    font-size: 1.1rem;
    color: var(--tpp-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.tpp-services {
    background: var(--tpp-light);
}

/* Pricing Banner */
.tpp-pricing-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    border-radius: 20px;
    padding: 30px 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(13,148,136,0.3);
}

.tpp-pricing-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.tpp-pricing-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tpp-pricing-info {
    display: flex;
    flex-direction: column;
}

.tpp-pricing-type {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.tpp-pricing-amount {
    font-family: var(--tpp-font-display);
    font-size: 2rem;
    font-weight: 700;
}

.tpp-pricing-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

.tpp-pricing-divider {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .tpp-pricing-banner {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .tpp-pricing-divider {
        width: 80%;
        height: 2px;
    }
}

.tpp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.tpp-service-card {
    background: var(--tpp-white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid var(--tpp-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.tpp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: var(--tpp-primary);
}

.tpp-service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.tpp-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tpp-service-card:hover .tpp-service-image img {
    transform: scale(1.1);
}

.tpp-service-icon {
    position: absolute;
    bottom: -26px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 2;
    background: var(--tpp-primary);
}

/* Price Badge on Image */
.tpp-service-price {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--tpp-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tpp-service-price.individual {
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
}

.tpp-service-price.couple {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.tpp-service-content {
    padding: 40px 24px 28px;
}

.tpp-service-title {
    font-family: var(--tpp-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tpp-dark);
    margin-bottom: 12px;
}

.tpp-service-desc {
    font-size: 0.95rem;
    color: var(--tpp-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.tpp-service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--tpp-border);
    font-size: 0.9rem;
    color: var(--tpp-text-light);
}

.tpp-meta-duration {
    color: var(--tpp-text-light);
}

.tpp-meta-price {
    font-weight: 700;
    color: var(--tpp-primary);
}

.tpp-service-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    color: var(--tpp-primary);
    border: 2px solid var(--tpp-primary);
    border-radius: var(--tpp-radius-full);
    font-family: var(--tpp-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.tpp-service-btn:hover {
    background: var(--tpp-primary);
    color: #fff;
}

.tpp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tpp-primary);
    transition: gap 0.3s;
}

.tpp-service-card:hover .tpp-service-link {
    gap: 14px;
}

/* ===== ABOUT SECTION STYLES ===== */
.tpp-about-images-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:48px;max-width:900px;margin-left:auto;margin-right:auto}
.tpp-about-image-box{border-radius:20px;overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,0.1);background:#fff}
.tpp-about-image-box img{width:100%;height:auto;display:block;aspect-ratio:4/3;object-fit:cover}
.tpp-with-label{position:relative}
.tpp-image-label{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,0.85));color:#fff;padding:50px 20px 20px;font-family:'Inter',sans-serif;font-weight:600;font-size:1rem;text-align:center;letter-spacing:0.02em}
.tpp-about-profile-card{background:#fff;border-radius:24px;padding:48px 40px;text-align:center;max-width:800px;margin:0 auto 48px;box-shadow:0 8px 30px rgba(0,0,0,0.06);border:1px solid #f3f4f6}
.tpp-about-profile-card h3{font-family:'Merriweather',Georgia,serif;font-size:2.2rem;font-weight:700;color:#111827;margin:0 0 10px;letter-spacing:-0.5px}
.tpp-role{font-family:'Inter',sans-serif;font-size:1.15rem;color:#0d9488;font-weight:600;margin:0 0 6px;letter-spacing:0.01em}
.tpp-reg{font-family:'Inter',sans-serif;font-size:0.95rem;color:#6b7280;margin:0 0 24px;font-weight:500}
.tpp-badges-container{display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-bottom:28px}
.tpp-green-badge{font-family:'Inter',sans-serif;font-size:0.9rem;font-weight:600;background:linear-gradient(135deg,#ecfdf5,#d1fae5);color:#065f46;padding:10px 20px;border-radius:50px;border:1px solid #a7f3d0;letter-spacing:0.01em}
.tpp-about-description{font-family:'Inter',sans-serif;font-size:1.05rem;line-height:1.85;color:#4b5563;margin:0 0 32px;max-width:650px;margin-left:auto;margin-right:auto;font-weight:400}
.tpp-about-cta{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}
.tpp-about-features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:900px;margin:0 auto}
.tpp-about-feature-item{background:#fff;padding:28px 20px;border-radius:16px;text-align:center;border:1px solid #e5e7eb;transition:all 0.3s ease}
.tpp-about-feature-item:hover{border-color:#0d9488;transform:translateY(-4px);box-shadow:0 12px 30px rgba(13,148,136,0.12)}
.tpp-feature-icon{font-size:2.2rem;display:block;margin-bottom:14px}
.tpp-about-feature-item h4{font-family:'Inter',sans-serif;font-size:1rem;font-weight:700;color:#111827;margin:0 0 8px;letter-spacing:-0.01em}
.tpp-about-feature-item p{font-family:'Inter',sans-serif;font-size:0.85rem;color:#6b7280;margin:0;line-height:1.5;font-weight:400}

@media(max-width:768px){
.tpp-about-images-grid{grid-template-columns:1fr;gap:20px}
.tpp-about-image-box img{aspect-ratio:16/10}
.tpp-about-profile-card{padding:32px 24px;border-radius:20px}
.tpp-about-profile-card h3{font-size:1.75rem}
.tpp-role{font-size:1rem}
.tpp-badges-container{gap:8px}
.tpp-green-badge{font-size:0.8rem;padding:8px 14px}
.tpp-about-description{font-size:0.95rem;line-height:1.75}
.tpp-about-cta{flex-direction:column;align-items:center}
.tpp-about-cta .tpp-btn{width:100%;max-width:280px;justify-content:center}
.tpp-about-features-grid{grid-template-columns:1fr 1fr;gap:14px}
.tpp-about-feature-item{padding:22px 16px}
.tpp-feature-icon{font-size:1.8rem;margin-bottom:10px}
.tpp-about-feature-item h4{font-size:0.9rem}
.tpp-about-feature-item p{font-size:0.75rem}
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.tpp-testimonials-section {
    background: linear-gradient(180deg, var(--tpp-white) 0%, var(--tpp-light) 100%);
}

.tpp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.tpp-testimonial-card {
    background: var(--tpp-white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--tpp-border);
    transition: all 0.3s ease;
}

.tpp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tpp-testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.tpp-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--tpp-text);
    font-style: italic;
    margin-bottom: 28px;
}

.tpp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tpp-testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--tpp-font-display);
    font-weight: 700;
    font-size: 1.4rem;
}

.tpp-testimonial-author strong {
    display: block;
    font-size: 1.05rem;
    color: var(--tpp-dark);
    font-weight: 600;
}

.tpp-testimonial-author span {
    font-size: 0.9rem;
    color: var(--tpp-text-light);
}

/* ============================================
   FAQ SECTION - WORKING VERSION
   ============================================ */
.tpp-faq {
    background: var(--tpp-light);
}

.tpp-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.tpp-faq-item {
    background: var(--tpp-white);
    border-radius: var(--tpp-radius);
    margin-bottom: 16px;
    border: 2px solid var(--tpp-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tpp-faq-item:hover {
    border-color: var(--tpp-primary);
}

.tpp-faq-item.active {
    border-color: var(--tpp-primary);
    box-shadow: 0 10px 30px rgba(13,148,136,0.15);
}

.tpp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--tpp-font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tpp-dark);
    transition: all 0.3s ease;
    gap: 16px;
    user-select: none;
}

.tpp-faq-question:hover {
    color: var(--tpp-primary);
}

.tpp-faq-question span:first-child {
    flex: 1;
}

.tpp-faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--tpp-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--tpp-primary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.tpp-faq-item.active .tpp-faq-icon {
    background: var(--tpp-primary);
    color: #fff;
    transform: rotate(180deg);
}

.tpp-faq-answer {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tpp-faq-answer p {
    padding: 0 28px 28px;
    color: var(--tpp-text);
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.tpp-booking { 
    background: var(--tpp-white); 
}

.tpp-booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--tpp-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--tpp-border);
}

.tpp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tpp-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.tpp-form-field label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--tpp-dark);
}

.tpp-form-field input,
.tpp-form-field select,
.tpp-form-field textarea {
    padding: 16px 20px;
    border: 2px solid var(--tpp-border);
    border-radius: var(--tpp-radius-sm);
    font-family: var(--tpp-font-body);
    font-size: 1rem;
    color: var(--tpp-dark);
    transition: all 0.3s ease;
    background: var(--tpp-white);
}

.tpp-form-field input:focus,
.tpp-form-field select:focus,
.tpp-form-field textarea:focus {
    outline: none;
    border-color: var(--tpp-primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
}

.tpp-form-field textarea { 
    resize: vertical; 
    min-height: 120px; 
}

.tpp-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    color: var(--tpp-white);
    border: none;
    border-radius: var(--tpp-radius-sm);
    font-family: var(--tpp-font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.tpp-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(13,148,136,0.35);
}

.tpp-btn-gold {
    background: linear-gradient(135deg, var(--tpp-secondary) 0%, var(--tpp-secondary-dark) 100%) !important;
    color: #fff !important;
}

.tpp-btn-gold:hover { 
    box-shadow: 0 15px 35px rgba(245,158,11,0.35);
}

.tpp-form-message {
    margin-top: 20px;
    padding: 18px;
    border-radius: var(--tpp-radius-sm);
    text-align: center;
    font-weight: 600;
    display: none;
}

.tpp-form-message.success { 
    display: block; 
    background: #d1fae5; 
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.tpp-form-message.error { 
    display: block; 
    background: #fee2e2; 
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   CTA SECTION
   ============================================ */
.tpp-cta-section {
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tpp-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tpp-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tpp-cta-section h2 {
    font-family: var(--tpp-font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tpp-cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
}

.tpp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.tpp-contact {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    color: #334155;
}

.tpp-contact .tpp-section-label { 
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
}

.tpp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tpp-contact-items { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.tpp-contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: var(--tpp-radius);
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.tpp-contact-item:hover {
    border-color: #0d9488;
    box-shadow: 0 8px 24px rgba(13,148,136,0.1);
    transform: translateY(-2px);
}

.tpp-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tpp-contact-item small { 
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.tpp-contact-item strong { 
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.tpp-contact-form-wrap {
    background: var(--tpp-white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.tpp-contact-form .tpp-form-field label { 
    color: #374151;
    font-weight: 600;
}

/* ============================================
   FOOTER - Light Theme for Logo Visibility
   ============================================ */
.tpp-footer {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--tpp-text);
    padding: 80px 40px 0;
    border-top: 1px solid var(--tpp-border);
}

.tpp-footer-inner { 
    max-width: 1400px; 
    margin: 0 auto; 
}

.tpp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.tpp-footer-logo-link {
    display: inline-block;
    margin-bottom: 24px;
    text-decoration: none;
}

.tpp-footer-logo {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.tpp-footer-logo-link:hover .tpp-footer-logo {
    opacity: 0.8;
}

.tpp-footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.tpp-footer-brand p { 
    line-height: 1.9; 
    margin-top: 0;
    color: var(--tpp-text-light);
    font-size: 0.95rem;
}

.tpp-footer-col { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
}

.tpp-footer-col h4 { 
    color: var(--tpp-dark); 
    font-family: var(--tpp-font-display);
    font-size: 1.25rem; 
    margin-bottom: 12px;
    font-weight: 600;
}

.tpp-footer-col a { 
    color: var(--tpp-text-light); 
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.tpp-footer-col a:hover { 
    color: var(--tpp-primary); 
    padding-left: 8px; 
}

.tpp-footer-col p { 
    color: var(--tpp-text); 
    font-size: 0.95rem;
    line-height: 2;
    display: flex;
    align-items: center;
}

.tpp-footer-col p svg {
    color: var(--tpp-primary);
    flex-shrink: 0;
}

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

.tpp-footer-bottom p {
    color: var(--tpp-text-light);
    font-size: 0.9rem;
}

.tpp-footer-links {
    display: flex;
    gap: 24px;
}

.tpp-footer-links a,
.tpp-footer-bottom a { 
    color: var(--tpp-text-light); 
    font-size: 0.9rem;
    transition: color 0.3s;
}

.tpp-footer-links a:hover,
.tpp-footer-bottom a:hover { 
    color: var(--tpp-primary); 
}

/* ============================================
   SERVICE MODALS
   ============================================ */
.tpp-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.tpp-modal-box {
    background: var(--tpp-white);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.35s ease;
    position: relative;
}

.tpp-modal.active .tpp-modal-box {
    transform: scale(1) translateY(0);
}

.tpp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--tpp-white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    z-index: 10;
    color: var(--tpp-dark);
}

.tpp-modal-close:hover {
    transform: scale(1.1);
}

.tpp-modal-head {
    padding: 48px 32px 36px;
    text-align: center;
    color: #fff;
}

.tpp-modal-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 16px;
}

.tpp-modal-head h2 {
    color: #fff;
    font-family: var(--tpp-font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

.tpp-modal-body {
    padding: 32px;
    max-height: 350px;
    overflow-y: auto;
}

.tpp-modal-body > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--tpp-text);
    margin-bottom: 24px;
}

.tpp-modal-section {
    margin-bottom: 20px;
}

.tpp-modal-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tpp-dark);
    margin-bottom: 8px;
}

.tpp-modal-section p {
    font-size: 0.9rem;
    color: var(--tpp-text-light);
    line-height: 1.7;
}

.tpp-modal-foot {
    padding: 24px 32px;
    background: var(--tpp-light);
    display: flex;
    gap: 14px;
}

.tpp-modal-foot .tpp-btn {
    flex: 1;
    justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN - COMPREHENSIVE
   ============================================ */
@media (max-width: 1200px) {
    .tpp-hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .tpp-hero-content { order: 1; }
    .tpp-hero-visual { order: 2; max-width: 500px; margin: 0 auto; }
    .tpp-hero-buttons { justify-content: center; }
    .tpp-experience-highlight { justify-content: center; }
    .tpp-floating-badge { display: none; }
    .tpp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .tpp-header-inner { padding: 0 15px; height: 80px; }
    .tpp-nav, .tpp-phone-link { display: none; }
    .tpp-mobile-toggle { display: flex; }
    .tpp-header-actions .tpp-btn { padding: 10px 18px; font-size: 0.85rem; }
    .tpp-logo-img { height: 60px; max-width: 240px; }
    .tpp-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .tpp-testimonials-grid { grid-template-columns: 1fr 1fr; }
    .tpp-hero-stats { grid-template-columns: repeat(4, 1fr); gap: 15px; }
    .tpp-pricing-banner { gap: 30px; padding: 25px 30px; }
}

@media (max-width: 768px) {
    .tpp-header-inner { padding: 0 16px; height: 70px; }
    .tpp-header-actions .tpp-btn { padding: 8px 14px; font-size: 0.8rem; }
    .tpp-logo-img { height: 55px; max-width: 200px; }
    .tpp-section { padding: 60px 20px; }
    .tpp-section-title { font-size: 1.8rem; }
    .tpp-section-subtitle { font-size: 0.95rem; }
    .tpp-hero { padding: 100px 20px 60px; min-height: auto; }
    .tpp-hero-title { font-size: 1.8rem; line-height: 1.25; }
    .tpp-hero-text { font-size: 1rem; }
    .tpp-hero-badge { font-size: 0.8rem; padding: 10px 16px; }
    .tpp-hero-image { height: 380px; }
    .tpp-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tpp-stat { padding: 18px; }
    .tpp-stat-value { font-size: 1.6rem; }
    .tpp-stat-label { font-size: 0.8rem; }
    .tpp-experience-highlight { padding: 14px 20px; gap: 12px; }
    .tpp-exp-number { font-size: 2.2rem; }
    .tpp-exp-number span { font-size: 1.3rem; }
    .tpp-exp-title { font-size: 0.95rem; }
    .tpp-services-grid { grid-template-columns: 1fr; gap: 24px; }
    .tpp-service-card { max-width: 420px; margin: 0 auto; }
    .tpp-pricing-banner { flex-direction: column; gap: 24px; padding: 28px 24px; }
    .tpp-pricing-divider { width: 80%; height: 1px; }
    .tpp-pricing-icon { width: 55px; height: 55px; font-size: 1.8rem; }
    .tpp-pricing-amount { font-size: 1.6rem; }
    .tpp-form-grid { grid-template-columns: 1fr; }
    .tpp-booking-container { padding: 28px 24px; border-radius: 16px; }
    .tpp-contact-form { padding: 28px 24px; }
    .tpp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .tpp-contact-info { padding: 32px 24px; border-radius: 16px; }
    .tpp-footer { padding: 50px 20px 0; }
    .tpp-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .tpp-footer-brand { grid-column: span 2; text-align: center; }
    .tpp-footer-logo-link { display: block; }
    .tpp-footer-logo { margin: 0 auto 20px; height: 60px; }
    .tpp-footer-col { text-align: center; }
    .tpp-footer-col p { justify-content: center; }
    .tpp-footer-links-grid { justify-content: center; }
    .tpp-footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding: 24px 0; }
    .tpp-footer-links { justify-content: center; }
    .tpp-testimonials-grid { grid-template-columns: 1fr; }
    .tpp-faq-question { padding: 18px 20px; font-size: 1rem; }
    .tpp-faq-answer p { padding: 0 20px 20px; }
}

@media (max-width: 480px) {
    .tpp-section { padding: 50px 14px; }
    .tpp-hero { padding: 80px 14px 40px; }
    .tpp-hero-title { font-size: 1.7rem; }
    .tpp-hero-text { font-size: 0.95rem; }
    .tpp-hero-stats { gap: 10px; }
    .tpp-stat { padding: 14px 10px; border-radius: 12px; }
    .tpp-stat-value { font-size: 1.3rem; }
    .tpp-hero-buttons { flex-direction: column; gap: 12px; }
    .tpp-hero-buttons .tpp-btn { width: 100%; justify-content: center; }
    .tpp-btn { padding: 12px 20px; font-size: 0.9rem; }
    .tpp-section-title { font-size: 1.5rem; }
    .tpp-logo-img { height: 45px; max-width: 180px; }
    .tpp-experience-highlight { padding: 12px 18px; gap: 10px; border-radius: 12px; }
    .tpp-exp-number { font-size: 2rem; }
    .tpp-exp-number span { font-size: 1.2rem; }
    .tpp-exp-label { font-size: 0.75rem; }
    .tpp-exp-title { font-size: 0.9rem; }
    .tpp-header-actions .tpp-btn { padding: 8px 16px; font-size: 0.8rem; }
    .tpp-service-image { height: 180px; }
    .tpp-service-content { padding: 35px 20px 24px; }
    .tpp-service-title { font-size: 1.1rem; }
    .tpp-service-desc { font-size: 0.9rem; }
    .tpp-testimonial-card { padding: 24px 20px; }
    .tpp-contact-item { flex-direction: column; text-align: center; gap: 10px; }
}

/* ============================================
   FLOATING WHATSAPP & CALL BUTTONS
   ============================================ */
.tpp-whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99998;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.tpp-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.tpp-whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.tpp-whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tpp-whatsapp-float:hover .tpp-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.tpp-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #333;
}

.tpp-call-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tpp-primary) 0%, var(--tpp-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
    z-index: 99998;
    transition: all 0.3s ease;
    animation: pulse-call 2s infinite;
    animation-delay: 1s;
}

.tpp-call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.5);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(13, 148, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

@media (max-width: 768px) {
    .tpp-whatsapp-float,
    .tpp-call-float {
        width: 55px;
        height: 55px;
    }
    
    .tpp-whatsapp-float {
        bottom: 90px;
        right: 15px;
    }
    
    .tpp-call-float {
        bottom: 20px;
        right: 15px;
    }
    
    .tpp-whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   BLOCK THEME SUPPORT
   ============================================ */
.tpp-site-wrapper {
    position: relative;
    z-index: 100;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    overflow-x: hidden;
    background: var(--tpp-white);
    box-sizing: border-box !important;
}

.tpp-site-wrapper .tpp-header,
.tpp-site-wrapper .tpp-hero,
.tpp-site-wrapper .tpp-section,
.tpp-site-wrapper .tpp-footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

body.tpp-active .wp-site-blocks,
body.tpp-active .entry-content,
body.tpp-active main,
body.tpp-active article,
body.tpp-active .wp-block-group,
body.tpp-active .wp-block-post-content,
body.tpp-active .is-layout-constrained,
body.tpp-active .is-layout-flow {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.tpp-active .has-global-padding,
body.tpp-active .wp-block-group.has-global-padding {
    padding: 0 !important;
}

.wp-block-shortcode,
.entry-content .tpp-site-wrapper,
.wp-block-post-content .tpp-site-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative !important;
}

.tpp-site-wrapper .tpp-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
}

body.admin-bar .tpp-header {
    top: 32px !important;
}

@media (max-width: 782px) {
    body.admin-bar .tpp-header {
        top: 46px !important;
    }
}

/* HIDE THEME HEADER AND FOOTER COMPLETELY */
body.tpp-active header.wp-block-template-part,
body.tpp-active footer.wp-block-template-part,
body.tpp-active .wp-site-blocks > header,
body.tpp-active .wp-site-blocks > footer,
body.tpp-active .site-header,
body.tpp-active .site-footer,
body.tpp-active #masthead,
body.tpp-active #colophon,
body.tpp-active .entry-header,
body.tpp-active .entry-footer,
body.tpp-active .page-header,
body.tpp-active .post-navigation,
body.tpp-active .navigation,
body.tpp-active article > header,
body.tpp-active article > footer,
body.tpp-active .wp-block-post-title,
body.tpp-active .entry-title,
body.tpp-active .page-title {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide Twenty Twenty-Five specific elements */
body.tpp-active .wp-block-navigation,
body.tpp-active .wp-block-site-title,
body.tpp-active .wp-block-site-tagline,
body.tpp-active nav.wp-block-navigation {
    display: none !important;
}

/* Ensure plugin footer is the only footer visible */
body.tpp-active .tpp-site-wrapper ~ *,
body.tpp-active .wp-site-blocks > *:not(.entry-content):not(main):not(article) {
    display: none !important;
}
