/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2026 | 22:07:19 */
/* ==========================================================================
   PALM HUB CONSULTATION - PREMIUM STYLE SYSTEM (DARK LUXURY & GOLD ACCENTS)
   ========================================================================== */
/* Design Tokens & Theme Variables */
:root {
    --ph-bg-primary: #08080a;
    --ph-bg-secondary: #0e0e12;
    --ph-bg-tertiary: #14141a;
    --ph-accent-gold: #c5a880;
    --ph-accent-gold-hover: #e5cda8;
    --ph-accent-gold-dark: #8c714d;
    --ph-text-primary: #f5f5f7;
    --ph-text-secondary: #a1a1a6;
    --ph-text-muted: #62626a;
    
    /* Luxury Gradients */
    --ph-gold-gradient: linear-gradient(135deg, #a88a58 0%, #d8c199 50%, #a88a58 100%);
    --ph-gold-text-gradient: linear-gradient(135deg, #c5a880 0%, #ebd4b3 50%, #a88a58 100%);
    --ph-dark-gradient: linear-gradient(180deg, #08080a 0%, #0e0e12 100%);
    --ph-card-glow: radial-gradient(circle at 50% 0%, rgba(197, 168, 128, 0.08), transparent 70%);
    
    /* Layout Variables */
    --ph-container-width: 1200px;
    --ph-header-height: 80px;
    --ph-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Glassmorphism Styles */
    --ph-glass-bg: rgba(14, 14, 18, 0.85);
    --ph-glass-border: rgba(197, 168, 128, 0.08);
}
/* ==========================================================================
   1. Base Reset & Structure (WordPress & Elementor Compatible)
   ========================================================================== */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body.ph-body {
    background-color: var(--ph-bg-primary);
    color: var(--ph-text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* Custom Gold themed Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ph-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--ph-accent-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ph-accent-gold);
}
/* Container Structure */
.ph-container {
    width: 100%;
    max-width: var(--ph-container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.ph-grid {
    display: grid;
    gap: 32px;
}
/* Typography elements */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--ph-text-primary);
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}
.ph-gold-text {
    background: var(--ph-gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.ph-paragraph {
    color: var(--ph-text-secondary);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}
/* ==========================================================================
   2. Components: Scroll Progress & Header Menu
   ========================================================================== */
.ph-scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--ph-gold-gradient);
    width: 0;
    z-index: 9999;
    transition: width 0.1s ease-out;
}
.ph-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--ph-header-height);
    background: var(--ph-glass-bg);
    border-bottom: 1px solid var(--ph-glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--ph-transition);
}
.ph-header.ph-scrolled {
    height: 70px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: rgba(8, 8, 10, 0.95);
}
.ph-header-container {
    max-width: var(--ph-container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ph-logo-link {
    text-decoration: none;
}
.ph-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ph-logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--ph-text-primary);
    line-height: 1;
}
.ph-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 8px;
    letter-spacing: 5.8px;
    color: var(--ph-accent-gold);
    line-height: 1;
    margin-top: 4px;
    text-transform: uppercase;
}
/* Nav Menu Styles */
.ph-nav {
    display: block;
}
.ph-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}
.ph-nav-link {
    color: var(--ph-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--ph-transition);
    position: relative;
    padding: 8px 0;
}
.ph-nav-link:hover, 
.ph-nav-link.ph-active {
    color: var(--ph-accent-gold);
}
.ph-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--ph-gold-gradient);
    transition: var(--ph-transition);
}
.ph-nav-link:hover::after,
.ph-nav-link.ph-active::after {
    width: 100%;
}
/* Header CTA Button Wrapper */
.ph-header-cta {
    display: block;
}
/* Buttons System */
.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--ph-transition);
    cursor: pointer;
}
.ph-btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}
.ph-btn-primary {
    background: var(--ph-gold-gradient);
    color: #000000;
    border: none;
}
.ph-btn-primary:hover {
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
    transform: translateY(-2px);
    background: var(--ph-accent-gold-hover);
}
.ph-btn-outline {
    background: transparent;
    color: var(--ph-accent-gold);
    border: 1px solid var(--ph-accent-gold);
}
.ph-btn-outline:hover {
    background: var(--ph-gold-gradient);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.3);
    transform: translateY(-2px);
}
.ph-btn-full {
    width: 100%;
}
/* Mobile Toggle button menu icon */
.ph-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.ph-menu-toggle .ph-bar {
    width: 100%;
    height: 2px;
    background-color: var(--ph-text-primary);
    transition: var(--ph-transition);
}
/* Mobile Navigation Menu Drawer */
.ph-mobile-nav {
    position: fixed;
    top: var(--ph-header-height);
    left: 0;
    width: 100%;
    height: 0;
    background: var(--ph-bg-secondary);
    z-index: 999;
    overflow: hidden;
    transition: var(--ph-transition);
    border-bottom: 1px solid transparent;
}
.ph-mobile-nav.ph-active {
    height: calc(100vh - var(--ph-header-height));
    border-bottom: 1px solid var(--ph-glass-border);
}
.ph-mobile-list {
    list-style: none;
    padding: 40px 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ph-mobile-link {
    color: var(--ph-text-secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    transition: var(--ph-transition);
}
.ph-mobile-link:hover {
    color: var(--ph-accent-gold);
    padding-left: 8px;
}
.ph-mobile-cta {
    margin-top: 16px;
}
/* ==========================================================================
   3. Hero Section Styles
   ========================================================================== */
.ph-hero-section {
    position: relative;
    padding: 200px 0 100px 0;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--ph-bg-primary);
    overflow: hidden;
}
.ph-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(14, 14, 18, 0.4) 0%, var(--ph-bg-primary) 90%);
    z-index: 1;
}
.ph-hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}
.ph-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin-bottom: 80px;
}
.ph-badge-wrapper {
    margin-bottom: 24px;
}
.ph-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--ph-accent-gold-dark);
    color: var(--ph-accent-gold);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 30px;
    background: rgba(197, 168, 128, 0.04);
}
.ph-hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
}
.ph-hero-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--ph-text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
}
.ph-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* Stat Cards in Hero */
.ph-hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 60px;
}
.ph-stat-card {
    display: flex;
    flex-direction: column;
}
.ph-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--ph-accent-gold);
    line-height: 1.2;
    margin-bottom: 8px;
    background: var(--ph-gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ph-stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ph-text-secondary);
}
/* ==========================================================================
   4. About Us & Strategic Diagnostic Cards
   ========================================================================== */
.ph-about-section {
    padding: 120px 0;
    background: var(--ph-bg-secondary);
    position: relative;
}
.ph-section-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ph-accent-gold);
    margin-bottom: 12px;
}
.ph-section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
}
/* ==========================================================================
   5. Services & Diagnostics Cards Grid
   ========================================================================== */
.ph-services-section {
    padding: 120px 0;
    background: var(--ph-bg-primary);
}
.ph-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px auto;
}
.ph-section-desc {
    color: var(--ph-text-secondary);
    font-weight: 300;
    font-size: 16px;
}
.ph-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.ph-service-card {
    background: var(--ph-bg-tertiary);
    border: 1px solid rgba(197, 168, 128, 0.08);
    padding: 40px;
    transition: var(--ph-transition);
    position: relative;
    background-image: var(--ph-card-glow);
}
.ph-service-card:hover {
    border-color: rgba(197, 168, 128, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 168, 128, 0.05);
}
.ph-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ph-gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ph-transition);
}
.ph-service-card:hover::before {
    transform: scaleX(1);
}
.ph-service-icon {
    color: var(--ph-accent-gold);
    margin-bottom: 28px;
    display: inline-block;
    transition: var(--ph-transition);
}
.ph-service-card:hover .ph-service-icon {
    transform: scale(1.1);
    color: var(--ph-accent-gold-hover);
}
.ph-service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.ph-service-desc {
    color: var(--ph-text-secondary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
}
.ph-service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}
.ph-service-bullets li {
    font-size: 13px;
    color: var(--ph-text-secondary);
    position: relative;
    padding-left: 20px;
}
.ph-service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--ph-accent-gold);
    border-radius: 50%;
}
/* ==========================================================================
   6. Case Studies / BMC Toolbox Tabs Section
   ========================================================================== */
.ph-cases-section {
    padding: 120px 0;
    background: var(--ph-bg-primary);
}
.ph-tabs-container {
    margin-top: 48px;
}
.ph-tab-headers {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 48px;
    overflow-x: auto;
    white-space: nowrap;
}
.ph-tab-btn {
    background: transparent;
    border: none;
    color: var(--ph-text-secondary);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 28px;
    cursor: pointer;
    transition: var(--ph-transition);
    position: relative;
}
.ph-tab-btn:hover {
    color: var(--ph-accent-gold-hover);
}
.ph-tab-btn.ph-tab-active {
    color: var(--ph-accent-gold);
    font-weight: 600;
}
.ph-tab-btn.ph-tab-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ph-gold-gradient);
}
.ph-tab-panels {
    position: relative;
}
.ph-tab-panel {
    animation: phFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ph-case-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    background: var(--ph-bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.08);
    padding: 48px;
    position: relative;
}
.ph-case-details {
    display: flex;
    flex-direction: column;
}
.ph-case-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ph-accent-gold);
    margin-bottom: 16px;
    font-weight: 600;
}
.ph-case-title {
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.25;
    margin-bottom: 16px;
}
.ph-case-paragraph {
    color: var(--ph-text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}
.ph-case-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}
.ph-meta-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ph-accent-gold);
    margin-bottom: 6px;
}
.ph-meta-item span {
    font-size: 14px;
    color: var(--ph-text-secondary);
    font-weight: 300;
}
.ph-case-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 48px;
}
.ph-metric-box {
    display: flex;
    flex-direction: column;
}
.ph-metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--ph-accent-gold);
    line-height: 1.1;
    background: var(--ph-gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ph-metric-lbl {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ph-text-secondary);
    margin-top: 4px;
}
@keyframes phFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================================================================
   7. Section 4: The Engagement Framework
   ========================================================================== */
.ph-framework-section {
    padding: 120px 0;
    background: var(--ph-bg-secondary);
}
.ph-framework-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.ph-framework-card {
    background: var(--ph-bg-tertiary);
    border: 1px solid rgba(197, 168, 128, 0.08);
    padding: 40px;
    position: relative;
    transition: var(--ph-transition);
}
.ph-framework-card:hover {
    border-color: rgba(197, 168, 128, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.ph-framework-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 600;
    color: var(--ph-accent-gold-dark);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    opacity: 0.7;
}
.ph-framework-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ph-text-primary);
}
.ph-framework-card-desc {
    color: var(--ph-text-secondary);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}
/* ==========================================================================
   8. Contact Section (Contact Form 7 Compatible Wrapper)
   ========================================================================== */
.ph-contact-section {
    padding: 120px 0;
    background: var(--ph-bg-primary);
}
.ph-contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}
.ph-contact-details-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ph-contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ph-detail-icon {
    color: var(--ph-accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}
.ph-detail-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--ph-text-primary);
}
.ph-detail-text p {
    color: var(--ph-text-secondary);
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}
.ph-contact-form-container {
    background: var(--ph-bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.08);
    padding: 48px;
    background-image: var(--ph-card-glow);
}
.ph-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.ph-form-field {
    margin-bottom: 24px;
}
.ph-form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ph-text-primary);
    margin-bottom: 8px;
}
.wpcf7-form-control {
    width: 100%;
}
.ph-form-input,
.ph-form-select,
.ph-form-textarea {
    width: 100%;
    background: var(--ph-bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--ph-text-primary);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    border-radius: 2px;
    outline: none;
    transition: var(--ph-transition);
}
.ph-form-input:focus,
.ph-form-select:focus,
.ph-form-textarea:focus {
    border-color: var(--ph-accent-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}
/* ==========================================================================
   9. Footer Layout
   ========================================================================== */
.ph-footer {
    background: var(--ph-bg-secondary);
    border-top: 1px solid rgba(197, 168, 128, 0.08);
    padding: 80px 0 40px 0;
}
.ph-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
}
.ph-footer-brand {
    max-width: 360px;
}
.ph-footer-tagline {
    color: var(--ph-text-secondary);
    font-size: 14px;
    font-weight: 300;
    margin-top: 16px;
    line-height: 1.6;
}
.ph-footer-links-grid {
    display: flex;
    gap: 80px;
}
.ph-footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ph-accent-gold);
    margin-bottom: 24px;
}
.ph-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ph-footer-menu a {
    color: var(--ph-text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: var(--ph-transition);
}
.ph-footer-menu a:hover {
    color: var(--ph-accent-gold);
    padding-left: 4px;
}
.ph-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.ph-copyright {
    font-size: 12px;
    color: var(--ph-text-muted);
    margin: 0;
}
.ph-footer-legal {
    display: flex;
    gap: 24px;
}
.ph-footer-legal a {
    font-size: 12px;
    color: var(--ph-text-muted);
    text-decoration: none;
    transition: var(--ph-transition);
}
.ph-footer-legal a:hover {
    color: var(--ph-accent-gold);
}
/* ==========================================================================
   10. Scroll Reveal Animations Setup
   ========================================================================== */
body.js-active .ph-scroll-reveal {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
body.js-active .ph-scroll-reveal:not(.ph-revealed) {
    opacity: 0;
    transform: translateY(25px);
}
.ph-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: phFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ph-fade-in:nth-child(1) { animation-delay: 0.1s; }
.ph-fade-in:nth-child(2) { animation-delay: 0.2s; }
.ph-fade-in:nth-child(3) { animation-delay: 0.3s; }
.ph-fade-in:nth-child(4) { animation-delay: 0.4s; }
/* ==========================================================================
   11. Media Queries System (Mobile Responsiveness)
   ========================================================================== */
/* Laptop / Small Desktop (1024px) */
@media (max-width: 1024px) {
    .ph-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .ph-case-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ph-case-metrics {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        padding-top: 32px;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}
/* Tablet (768px) */
@media (max-width: 768px) {
    /* Responsive Menu Styles */
    .ph-nav, .ph-header-cta {
        display: none;
    }
    
    .ph-menu-toggle {
        display: flex;
    }
    
    .ph-menu-toggle.ph-active .ph-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .ph-menu-toggle.ph-active .ph-bar:nth-child(2) {
        opacity: 0;
    }
    
    .ph-menu-toggle.ph-active .ph-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .ph-hero-section {
        padding-top: 150px;
    }
    
    .ph-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ph-footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .ph-footer-links-grid {
        gap: 48px;
        flex-wrap: wrap;
    }
    
    .ph-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .ph-hero-actions {
        flex-direction: column;
    }
    
    .ph-btn {
        width: 100%;
    }
    
    .ph-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .ph-contact-form-container {
        padding: 24px;
    }
    
    .ph-case-grid {
        padding: 24px;
    }
    
    .ph-case-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}