:root {
    --primary: #1F3D23;
    --primary-light: #2C5530;
    --secondary: #E8F4EA;
    --accent: #B8934A;
    --text-dark: #1A1A1A;
    --text-light: #4A5568;
    --text-muted: #6B7280;
    --bg-light: #FFFFFF;
    --bg-section: #F7F9F8;
    --border: #D1D5DB;
    --border-focus: #3B82F6;
    --error: #DC2626;
    --success: #059669;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Ensure Font Awesome fonts render with swap to avoid FOIT */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Reserve space for Font Awesome icons to prevent CLS */
.fa, .fas, .far, .fab {
    display: inline-block;
    width: 1em;
    min-width: 1em;
    text-align: center;
    line-height: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    scroll-behavior: smooth;
    /* Prevent layout shift from font loading */
    font-display: swap;
    font-synthesis: none;
    /* Add padding-top to account for fixed header */
    padding-top: 80px;
}

/* Prevent layout shift from font loading */
* {
    font-display: swap;
}

/* Ensure consistent text rendering */
h1, h2, h3, h4, h5, h6, p, span, div, a {
    font-display: swap;
    font-synthesis: none;
    /* Prevent text layout shift */
    line-height: 1.2;
}

/* Prevent layout shift from images */
img {
    max-width: 100%;
    height: auto;
    /* Note: removed invalid aspect-ratio attr() usage that can break some CDNs */
}


/* Prevent layout shift from iframes and embeds */
iframe, embed, object {
    max-width: 100%;
    /* Prevent layout shift */
    aspect-ratio: 16/9;
    display: block;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    display: none;
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.logo.has-mark .logo-mark {
    display: block;
}

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

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .logo-name {
        font-size: 1.5rem;
    }
    .logo-tagline {
        font-size: 0.875rem;
    }
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Header CTA Button */
.header-cta {
    display: none; /* Hidden by default on mobile */
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #d4a574 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent);
    flex-shrink: 0;
    white-space: nowrap;
}

/* Mobile CTA Chip - Modern Floating Action Button */
.mobile-cta-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(
        135deg, 
        rgba(184, 147, 74, 0.95) 0%, 
        rgba(212, 165, 116, 0.95) 100%
    );
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 24px rgba(184, 147, 74, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mobile-cta-chip::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 cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta-chip:hover::before {
    left: 100%;
}

.mobile-cta-chip:hover {
    background: linear-gradient(
        135deg, 
        rgba(212, 165, 116, 0.95) 0%, 
        rgba(184, 147, 74, 0.95) 100%
    );
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(184, 147, 74, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.2);
    color: white;
}

.mobile-cta-chip:active {
    transform: translateY(-1px) scale(0.98);
}

.mobile-cta-chip i {
    font-size: 0.75rem;
    z-index: 1;
}

.mobile-cta-chip .cta-text {
    display: inline;
    z-index: 1;
}

@media (max-width: 480px) {
    .mobile-cta-chip .cta-text {
        display: none;
    }
    
    .mobile-cta-chip {
        padding: 0.5rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
}

.header-cta:hover {
    background: linear-gradient(135deg, #d4a574 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.header-cta i {
    font-size: 0.875rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0.25rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(31, 61, 35, 0.1);
}

/* Header Right Container */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* Mobile Menu - Full Screen Overlay */
/* Mobile dropdown menu (last-known-good) */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover { background: var(--secondary); }

/* Mobile CTA styles removed - now using persistent mobile-cta-chip */

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 1.5rem 80px;
    text-align: center;
    border-bottom: 1px solid rgba(31, 61, 35, 0.1);
    overflow: hidden;
}

/* Enhanced Hero Secondary Button for Better Visibility */
.hero .btn-secondary {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%
    );
    color: var(--primary);
    border: 2px solid rgba(31, 61, 35, 0.5);
    box-shadow: 
        0 8px 32px rgba(31, 61, 35, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-weight: 700;
    position: relative;
}

.hero .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.02) 0%, 
        rgba(44, 85, 48, 0.02) 100%
    );
    border-radius: 18px;
    z-index: -1;
}

.hero .btn-secondary:hover {
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.08) 0%, 
        rgba(44, 85, 48, 0.08) 100%
    );
    color: var(--primary);
    border-color: rgba(31, 61, 35, 0.7);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(31, 61, 35, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 241, 0.85) 100%);
    z-index: -1;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Explicit aspect ratio to reserve space during load */
    aspect-ratio: 16 / 9;
}

.hero-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Modern Button System - Cutting Edge Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
    min-height: 56px;
    font-display: swap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: -0.01em;
    /* Enhanced glassmorphism base */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Shimmer effect for all buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    left: 100%;
}

/* Ripple effect on click */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Primary Button - Enhanced Glassmorphism */
.btn-primary {
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.9) 0%, 
        rgba(44, 85, 48, 0.9) 100%
    );
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(31, 61, 35, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(31, 61, 35, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.95) 0%, 
        rgba(44, 85, 48, 0.95) 100%
    );
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Secondary Button - Enhanced Visibility */
.btn-secondary {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%
    );
    color: var(--primary);
    border: 2px solid rgba(31, 61, 35, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(31, 61, 35, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.05) 0%, 
        rgba(44, 85, 48, 0.05) 100%
    );
    color: var(--primary);
    border-color: rgba(31, 61, 35, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(31, 61, 35, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Sections */
.section {
    padding: 5rem 1.5rem;
}

.section-alt {
    background: var(--bg-section);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* About Section */
.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.qualifications {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.qualifications h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.qualification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualification-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.qualification-list li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Help Topics */
.help-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.topic-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.topic-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.topic-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.topic-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Location Section */
.location-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.transport-info {
    padding: 1.5rem 2rem;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}

.transport-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.transport-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-auto-rows: min-content;
    column-gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.transport-item i {
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.transport-item strong {
    line-height: 1.1;
}

.transport-item small {
    color: var(--text-muted);
}

.map-container {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.map-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.map-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.map-frame {
    position: relative;
    height: 400px;
    background: var(--bg-section);
}

/* Enforce iframe aspect and height reservation */
.map-frame iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.map-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-control-btn:hover {
    background: var(--primary);
    color: var(--bg-light);
    transform: scale(1.05);
}

.location-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .map-frame {
        height: 500px;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn:focus,
.map-control-btn:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}


/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    /* Prevent layout shift by reserving space */
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    /* Ensure content doesn't cause layout shift */
    width: 100%;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* Prevent text layout shift */
    line-height: 1.2;
    min-height: 1.8rem;
}

.footer-description {
    margin-bottom: 2rem;
    opacity: 0.9;
    /* Prevent text layout shift */
    line-height: 1.5;
    min-height: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    /* Prevent text layout shift */
    line-height: 1.4;
    min-height: 2.5rem;
}

/* Footer skeleton loading state to prevent CLS */
.footer:empty::before {
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    background: var(--primary);
}

/* Ensure consistent font rendering */
.footer * {
    font-display: swap;
    font-synthesis: none;
}

/* Modern Footer Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        align-items: start;
        text-align: left;
    }
}

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

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

/* Resources Section */
.footer-resources {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-resources {
        text-align: center;
    }
}

.resources-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.resource-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .resource-links {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    min-width: 44px;
}

.resource-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.resource-link:hover::before {
    left: 100%;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gentle teal/blue color for exploration theme */
.resource-link:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.4);
}

.resource-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.resource-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.resource-label {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* Mobile optimization for resources */
@media (max-width: 767px) {
    .resource-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .resource-link {
        flex: 1;
        min-width: 200px;
        max-width: 350px;
        justify-content: center;
        padding: 0.875rem 1.125rem;
    }
    
    .resource-link i {
        font-size: 1.25rem;
    }
    
    .resource-label {
        font-size: 0.9rem;
    }
}

/* Social Media Section */
.footer-social {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-social {
        text-align: right;
    }
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-end;
        flex-direction: column;
        gap: 0.75rem;
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.social-label {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* Instagram specific styling */
.social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Facebook specific styling */
.social-link[href*="facebook"]:hover {
    background: #1877f2;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile optimization */
@media (max-width: 767px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .social-label {
        display: none;
    }
    
    .social-link i {
        font-size: 1.25rem;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .header-right {
        display: none;
    }
    
    .header-cta {
        display: inline-flex;
    }
    
    /* Fix spacing between nav menu and CTA button */
    .nav-container {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 2fr 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Handle tablet and medium screen sizes */
@media (min-width: 481px) and (max-width: 767px) {
    .nav-container {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .logo-name {
        font-size: 1.35rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    /* Tablet: keep phone icon and hamburger inline */
    .header-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .mobile-cta-chip .cta-text {
        display: inline;
    }
    
    .mobile-cta-chip {
        padding: 0.5rem 0.75rem;
        border-radius: 20px;
        width: auto;
        height: auto;
    }
}

/* Smooth transition breakpoint */
@media (min-width: 700px) and (max-width: 767px) {
    .nav-container {
        gap: 1rem;
    }
    
    .logo-name {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.825rem;
    }
}

/* Handle small mobile devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 1rem;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .mobile-cta-chip {
        padding: 0.5rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .mobile-cta-chip .cta-text {
        display: none;
    }
}

/* Handle very small screens */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .mobile-cta-chip {
        width: 36px;
        height: 36px;
        padding: 0.375rem;
    }
}

/* Handle landscape orientation on small screens */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
}

/* Handle larger tablet and desktop screens */
@media (min-width: 900px) {
    .nav-container {
        gap: 3rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .header-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Handle ultra-wide screens */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        padding: 1.25rem 2rem;
        gap: 4rem;
    }
    
    .logo-name {
        font-size: 1.75rem;
    }
    
    .logo-tagline {
        font-size: 1rem;
    }
    
    .header-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Handle 4K and ultra-wide displays */
@media (min-width: 2000px) {
    .nav-container {
        max-width: 1600px;
        padding: 1.5rem 3rem;
        gap: 5rem;
    }
    
    .logo-name {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 1.125rem;
    }
    
    .header-cta {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 140px 1.5rem 100px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .help-topics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ensure proper header spacing on desktop */
    .nav-container {
        gap: 3.5rem;
    }
    
    .nav-menu {
        gap: 2.25rem;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}





.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-options.single {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
}

/* Contact Cards */
.contact-card {
    background: var(--bg-light);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card-header {
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d1fae5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.contact-card:hover .service-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Modern Form Styling */
.contact-form {
    padding: 0 2.5rem 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 0.75rem;
}

.form-row.grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row.consent {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-section);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.form-row.consent:focus-within {
    border-color: var(--border-focus);
    background: var(--bg-light);
}

/* Form Labels */
.form-row label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.muted {
    color: var(--text-muted);
    font-weight: 400;
}

/* Modern Input Styling */
.form-input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 16px;
    font-size: 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
    transform: translateY(-1px);
}

.form-input:hover:not(:focus) {
    border-color: var(--text-light);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Textarea Specific Styling */
.form-textarea {
    min-height: 120px;
    max-height: 300px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

/* Select Styling */
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    appearance: none;
}

/* Checkbox Styling */
.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
}

.form-checkbox:focus {
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

/* Field Hints */
.field-hint {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: -0.25rem;
}

/* Validation States */
.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgb(220 38 38 / 0.1);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: var(--success);
}

/* Enhanced Button States & Micro-interactions */

/* Loading State */
.btn[aria-busy="true"] {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.btn[aria-busy="true"] i {
    animation: spin 1s linear infinite;
}

.btn[aria-busy="true"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

/* Success State */
.btn[data-state="success"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: scale(1.05);
}

.btn[data-state="success"] i::before {
    content: '\f00c'; /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Error State */
.btn[data-state="error"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    animation: shake 0.5s ease-in-out;
}

/* Focus States - Enhanced Accessibility */
.btn:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Magnetic Hover Effect */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-magnetic:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Simple Elegant Glow for Important CTAs */
.btn-pulse {
    position: relative;
    animation: none;
    box-shadow: 0 8px 32px rgba(31, 61, 35, 0.3);
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: radial-gradient(closest-side, rgba(31, 61, 35, 0.45), rgba(31, 61, 35, 0) 70%);
    filter: blur(6px);
    opacity: 0.1;
    pointer-events: none;
    animation: soft-glow 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes soft-glow {
    0%, 100% { opacity: 0.10; transform: scale(1); }
    20% { opacity: 0.25; transform: scale(1.01); }
    50% { opacity: 0.45; transform: scale(1.02); }
    80% { opacity: 0.25; transform: scale(1.01); }
}

/* Mobile: keep CTA chip and hamburger inline */
@media (max-width: 480px) {
    .header-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mobile-menu-btn {
        font-size: 1.25rem;
    }
}

/* Staggered Animation for Button Groups */
.cta-buttons .btn:nth-child(1) {
    animation-delay: 0.1s;
}

.cta-buttons .btn:nth-child(2) {
    animation-delay: 0.2s;
}

.cta-buttons .btn:nth-child(3) {
    animation-delay: 0.3s;
}

/* Keyframe Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bounce Animation for Success */
@keyframes bounce-success {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.1);
    }
    60% {
        transform: translateY(-5px) scale(1.05);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Status */
.form-status {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-status.success {
    background: #ecfdf5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.form-status.error {
    background: #fef2f2;
    color: var(--error);
    border: 1px solid #fecaca;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Honeypot */
.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Booking Card */
.booking-card-content {
    padding: 2.5rem;
    text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-options {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .form-row.grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card-header,
    .contact-form,
    .booking-card-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Micro-interactions */
.form-input:focus + .field-hint {
    color: var(--border-focus);
}

/* ========================================
   CONSULTATION CARD STYLES
   ======================================== */

/* Consultation Offer */
.consultation-offer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Responsive consultation offer container */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Smaller padding for mobile */
    }
    
    .consultation-offer {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .consultation-offer {
        padding: 2rem 0.75rem;
    }
}

@media (min-width: 1400px) {
    .consultation-offer {
        max-width: 1400px;
        padding: 6rem 2rem;
    }
}

@media (min-width: 2000px) {
    .consultation-offer {
        max-width: 1600px;
        padding: 7rem 3rem;
    }
}

.consultation-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--secondary);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
    display: block;
    width: 100%;
    box-sizing: border-box;
    opacity: 1;
    transform: translateY(0);
    min-height: 200px;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.consultation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.consultation-header {
    margin-bottom: 2.5rem;
}

.consultation-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.consultation-card:hover .consultation-icon {
    transform: scale(1.05);
}

.consultation-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.consultation-card p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Consultation Benefits - Improved Grid Layout */
.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem auto;
    width: 100%;
    max-width: 900px;
    align-items: start;
    justify-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-align: left;
    height: 80px; /* Fixed height for consistency */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    overflow: hidden; /* Prevent content overflow */
    justify-self: center;
    width: 100%;
    max-width: 280px;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.5);
}

.benefit-item i {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.benefit-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    hyphens: auto;
    
    /* Fallback for browsers without webkit-line-clamp support */
    max-height: 2.8em; /* 2 lines × 1.4 line-height */
}

/* Fallback for older browsers */
@supports not (-webkit-line-clamp: 2) {
    .benefit-item span {
        display: block;
        max-height: 2.8em;
        overflow: hidden;
        position: relative;
    }
    
    .benefit-item span::after {
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.8);
        padding-left: 0.5rem;
        font-weight: bold;
    }
}

/* Desktop optimization for consultation benefits alignment */
@media (min-width: 1024px) {
    .consultation-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1000px;
        justify-items: center;
    }
    
    .benefit-item {
        padding: 1.5rem;
        height: 90px; /* Consistent height */
        max-width: 300px;
        width: 100%;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
        width: 28px;
    }
    
    .benefit-item span {
        font-size: 1.1rem;
    }
}

/* Tablet optimization */
@media (min-width: 768px) and (max-width: 1023px) {
    .consultation-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        justify-items: center;
    }
    
    .benefit-item {
        padding: 1.125rem;
        height: 85px; /* Consistent height */
        max-width: 220px;
        width: 100%;
    }
}

/* Mobile landscape and small tablets */
@media (min-width: 481px) and (max-width: 767px) {
    .consultation-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 600px;
        justify-items: center;
    }
    
    /* Make the third item span both columns for better visual balance */
    .benefit-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        justify-self: center;
        width: 100%;
    }
    
    .benefit-item {
        padding: 1rem;
        height: 80px; /* Consistent height */
        border-radius: 14px;
        max-width: 200px;
        width: 100%;
    }
    
    .benefit-item i {
        font-size: 1.125rem;
        width: 22px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 2rem auto;
        justify-items: center;
    }
    
    .benefit-item {
        padding: 1rem;
        height: 75px; /* Consistent height */
        border-radius: 12px;
        max-width: 350px;
        margin: 0 auto;
        justify-self: center;
        width: 100%;
    }
    
    .benefit-item i {
        font-size: 1rem;
        width: 20px;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .consultation-benefits {
        gap: 0.875rem;
        max-width: 320px;
        margin: 1.5rem auto;
        justify-items: center;
    }
    
    .benefit-item {
        padding: 0.875rem;
        height: 70px; /* Consistent height */
        border-radius: 10px;
        max-width: 300px;
        width: 100%;
    }
    
    .benefit-item i {
        font-size: 0.875rem;
        width: 18px;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
}

/* Handle ultra-wide screens */
@media (min-width: 1400px) {
    .consultation-benefits {
        max-width: 1200px;
        gap: 3rem;
    }
    
    .benefit-item {
        padding: 1.75rem;
        height: 100px; /* Consistent height */
    }
    
    .benefit-item i {
        font-size: 1.75rem;
        width: 32px;
    }
    
    .benefit-item span {
        font-size: 1.2rem;
    }
}

/* Handle 4K and ultra-wide displays */
@media (min-width: 2000px) {
    .consultation-benefits {
        max-width: 1400px;
        gap: 3.5rem;
    }
    
    .benefit-item {
        padding: 2rem;
        height: 110px; /* Consistent height */
    }
    
    .benefit-item i {
        font-size: 2rem;
        width: 36px;
    }
    
    .benefit-item span {
        font-size: 1.3rem;
    }
}

.consultation-cta {
    margin-top: 2.5rem;
}

.cta-primary {
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.phone-number {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.phone-context {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 2rem 0;
    text-align: center;
    font-style: italic;
}

.cta-secondary p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Button Styles for Consultation Card */
.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Text Message Button for Better Visibility in Consultation Card */
.consultation-card .btn-secondary {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.98) 100%
    );
    color: var(--primary);
    border: 2px solid rgba(31, 61, 35, 0.5);
    box-shadow: 
        0 8px 32px rgba(31, 61, 35, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-weight: 700;
    position: relative;
}

.consultation-card .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.02) 0%, 
        rgba(44, 85, 48, 0.02) 100%
    );
    border-radius: 18px;
    z-index: -1;
}

.consultation-card .btn-secondary:hover {
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.08) 0%, 
        rgba(44, 85, 48, 0.08) 100%
    );
    color: var(--primary);
    border-color: rgba(31, 61, 35, 0.7);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(31, 61, 35, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Accent Button - Enhanced Gradient with Glassmorphism */
.btn-accent {
    background: linear-gradient(
        135deg, 
        rgba(184, 147, 74, 0.9) 0%, 
        rgba(212, 165, 116, 0.9) 100%
    );
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(184, 147, 74, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-accent:hover {
    background: linear-gradient(
        135deg, 
        rgba(212, 165, 116, 0.95) 0%, 
        rgba(184, 147, 74, 0.95) 100%
    );
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(184, 147, 74, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* New Button Variants for Enhanced Hierarchy */

/* Floating Action Button */
.btn-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    min-height: 56px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        135deg, 
        rgba(31, 61, 35, 0.95) 0%, 
        rgba(44, 85, 48, 0.95) 100%
    );
}

.btn-fab:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(31, 61, 35, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Pill Button for Secondary Actions */
.btn-pill {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
}

/* Icon-only Button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    min-height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.1);
}

/* Ghost Button - Minimal Style */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(31, 61, 35, 0.2);
    color: var(--primary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.btn-ghost:hover {
    background: rgba(31, 61, 35, 0.05);
    border-color: rgba(31, 61, 35, 0.4);
    transform: translateY(-2px);
}

/* Consultation Card Responsive Design */
@media (max-width: 768px) {
    .consultation-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .consultation-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .consultation-card h3 {
        font-size: 1.75rem;
    }
    
    .consultation-card p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
        justify-content: center;
    }
    
    .consultation-header {
        margin-bottom: 2rem;
    }
    
    .consultation-benefits {
        margin: 2rem 0;
    }
    
    .cta-buttons {
        margin: 0;
    }
    
    .phone-number {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .cta-secondary p {
        font-size: 0.9rem;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .consultation-card {
        padding: 1.5rem 1rem;
    }
    
    .consultation-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .consultation-card h3 {
        font-size: 1.5rem;
    }
    
    .consultation-card p {
        font-size: 1rem;
    }
    
    .consultation-benefits {
        margin: 1.5rem 0;
    }
    
    .cta-buttons {
        margin: 0 0.25rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Handle odd resolutions and improve tablet experience */
@media (min-width: 481px) and (max-width: 767px) {
    .consultation-card {
        border-radius: 22px;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-large {
        min-width: 140px;
        justify-content: center;
    }
}

/* Handle very small mobile devices */
@media (max-width: 360px) {
    .consultation-card {
        padding: 1.25rem 0.75rem;
        border-radius: 14px;
    }
    
    .consultation-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .consultation-card h3 {
        font-size: 1.25rem;
    }
    
    .consultation-card p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Prevent layout shift from buttons and interactive elements */
.btn, button, input, textarea, select {
    /* Prevent layout shift from font loading */
    font-display: swap;
    font-synthesis: none;
    /* Ensure consistent sizing */
    box-sizing: border-box;
    /* Prevent layout shift from focus states */
    outline: none;
    border: 1px solid transparent;
}

/* Prevent layout shift from focus states */
.btn:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

/* Prevent layout shift from hover states */
.btn:hover, button:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Prevent layout shift from loading states */
.loading, .loading * {
    pointer-events: none;
    opacity: 0.7;
}

/* Prevent layout shift from dynamic content */
.dynamic-content {
    min-height: 50px;
    transition: opacity 0.3s ease;
}

/* Prevent layout shift from animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu layout shift prevention handled in main mobile-menu rules above */

/* Prevent layout shift from navigation */
.nav-menu {
    /* Ensure consistent height */
    min-height: 2.5rem;
    align-items: center;
}

/* Prevent layout shift from logo */
.logo {
    /* Ensure consistent dimensions */
    min-width: 120px;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

/* Enhanced Responsive Design with Modern Button Adaptations */

/* Mobile-First Button Adaptations */
@media (max-width: 767px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 16px;
    }
    
    .btn-large {
        padding: 1.25rem 2.25rem;
        font-size: 1.125rem;
        min-height: 52px;
    }
    
    .btn-fab {
        width: 48px;
        height: 48px;
        min-height: 48px;
    }
    
    .btn-pill {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        min-height: 36px;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }
    
    /* Mobile CTA inline within header (no floating) */
    .mobile-cta-chip {
        position: static;
        bottom: auto;
        right: auto;
        z-index: 1;
        border-radius: 50px;
        box-shadow: 
            0 8px 24px rgba(184, 147, 74, 0.3),
            0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-cta-chip .cta-text {
        display: none;
    }
    
    .mobile-cta-chip i {
        font-size: 1rem;
    }
}

/* Remove tablet/desktop overrides that hide the mobile CTA chip */
@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-cta-chip { display: inline-flex; }
}

@media (min-width: 1024px) {
    .mobile-cta-chip { display: inline-flex; }
}

/* Tablet Adaptations */
@media (min-width: 768px) and (max-width: 1023px) {
    .btn {
        padding: 1.125rem 2.25rem;
        font-size: 1.05rem;
        min-height: 52px;
    }
    
    .btn-large {
        padding: 1.375rem 2.5rem;
        font-size: 1.2rem;
        min-height: 56px;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .mobile-cta-chip {
        display: none;
    }
}

/* Desktop Enhancements */
@media (min-width: 1024px) {
    .btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        min-height: 56px;
        border-radius: 20px;
    }
    
    .btn-large {
        padding: 1.5rem 3rem;
        font-size: 1.25rem;
        min-height: 64px;
    }
    
    .btn:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .btn-fab:hover {
        transform: translateY(-4px) scale(1.1);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .cta-buttons .btn {
        min-width: 220px;
    }
    
    .mobile-cta-chip {
        display: none;
    }
}

/* Brand-Specific Hover Effects */
.btn[href*="whatsapp"]:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 
        0 12px 40px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 
        0 12px 40px rgba(220, 39, 67, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn[href*="facebook"]:hover {
    background: #1877f2;
    box-shadow: 
        0 12px 40px rgba(24, 119, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn[href*="twitter"]:hover {
    background: #1da1f2;
    box-shadow: 
        0 12px 40px rgba(29, 161, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn[href*="linkedin"]:hover {
    background: #0077b5;
    box-shadow: 
        0 12px 40px rgba(0, 119, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
    
    .btn::before,
    .btn::after {
        display: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn-pulse {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .btn-ghost {
        border-color: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Pricing Components */
.pricing-highlight {
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(31, 61, 35, 0.3);
}

.pricing-icon {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: white;
}

.pricing-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Session Pricing in Consultation Card */
.session-pricing {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(31, 61, 35, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.pricing-info i {
    color: var(--primary);
    font-size: 1.1rem;
}

.pricing-info span {
    font-size: 1rem;
    line-height: 1.4;
}

/* Pricing Callout in Contact Section */
.pricing-callout {
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
}

.pricing-callout-content {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-callout-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-callout-content i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-details h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.pricing-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .pricing-icon {
        width: 50px;
        height: 50px;
    }
    
    .pricing-icon i {
        font-size: 1.25rem;
    }
    
    .pricing-content h3 {
        font-size: 1.25rem;
    }
    
    .pricing-content p {
        font-size: 0.9rem;
    }
    
    .pricing-callout-content {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .pricing-callout-content i {
        font-size: 1.25rem;
    }
    
    .pricing-details h3 {
        font-size: 1.1rem;
    }
    
    .pricing-details p {
        font-size: 0.85rem;
    }
    
    .session-pricing {
        margin: 1rem 0;
        padding: 0.75rem;
    }
    
    .pricing-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Psychology Today Social Link Styling - matches Instagram/Facebook default, purple on hover */
.social-link.psychology-today {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link.psychology-today:hover {
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #A855F7 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.social-link.psychology-today i {
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.social-link.psychology-today .social-label {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add a subtle professional glow effect */
.social-link.psychology-today::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link.psychology-today:hover::before {
    opacity: 1;
}