/* ===================================
   PalladiumHub - Complete CSS Styles
   =================================== */

/* --- CSS Variables --- */
:root {
    --ph-primary: #7B2D8E;
    --ph-primary-light: #9B4DB0;
    --ph-primary-dark: #5A1E6A;
    --ph-accent: #F5A623;
    --ph-accent-light: #FFB84D;
    --ph-blue: #3B82F6;
    --ph-green: #22C55E;
    --ph-pink: #EC4899;
    --ph-dark: #2D1B3D;
    --ph-gray: #6B7280;
    --ph-light: #F8F5FB;
    --ph-border: #E5E0EB;
    --ph-white: #FFFFFF;
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(123, 45, 142, 0.08);
    --shadow-md: 0 4px 20px rgba(123, 45, 142, 0.12);
    --shadow-lg: 0 8px 40px rgba(123, 45, 142, 0.15);
    --shadow-accent: 0 4px 20px rgba(245, 166, 35, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ph-dark);
    background-color: var(--ph-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ph-dark);
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

.logo img {
    height: 45px;
    width: auto;
}

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

.nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--ph-dark);
    opacity: 0.7;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ph-primary);
    opacity: 1;
    background: var(--ph-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--ph-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ph-primary) 0%, var(--ph-primary-light) 100%);
    color: var(--ph-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--ph-primary-dark) 0%, var(--ph-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--ph-primary);
    border: 2px solid var(--ph-primary);
}

.btn-outline:hover {
    background: var(--ph-primary);
    color: var(--ph-white);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--ph-accent) 0%, var(--ph-accent-light) 100%);
    color: var(--ph-white);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* --- Badge --- */
.badge {
    display: inline-block;
    background: var(--ph-light);
    color: var(--ph-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* --- Section Styles --- */
.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 42px;
    }
}

.section-header p {
    color: var(--ph-gray);
    font-size: 18px;
}

.bg-light {
    background: var(--ph-light);
}

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--ph-light) 0%, var(--ph-white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 80px;
    right: 80px;
    width: 300px;
    height: 300px;
    background: var(--ph-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 80px;
    width: 400px;
    height: 400px;
    background: var(--ph-accent);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 52px;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 60px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--ph-primary) 0%, var(--ph-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--ph-gray);
    margin-bottom: 32px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--ph-white);
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--ph-accent);
    margin-bottom: 4px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    bottom: -30px;
    left: -30px;
}

.floating-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(123, 45, 142, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ph-primary);
    font-size: 24px;
}

/* --- Page Hero --- */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--ph-light) 0%, var(--ph-white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 52px;
    }
}

.page-hero p {
    font-size: 18px;
    color: var(--ph-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Stats Section --- */
.stats {
    background: var(--ph-primary);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: var(--ph-white);
}

.stat-item i {
    font-size: 40px;
    color: var(--ph-accent);
    margin-bottom: 12px;
    display: block;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    opacity: 0.8;
}

/* --- Cards Grid --- */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 992px) {
    .cards-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Service Card --- */
.service-card {
    background: var(--ph-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--ph-border);
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.service-icon.purple {
    background: rgba(123, 45, 142, 0.1);
    color: var(--ph-primary);
}

.service-icon.orange {
    background: rgba(245, 166, 35, 0.1);
    color: var(--ph-accent);
}

.service-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--ph-blue);
}

.service-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--ph-green);
}

.service-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--ph-pink);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--ph-gray);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.service-features li i {
    color: var(--ph-accent);
    font-size: 12px;
}

/* --- Testimonial Card --- */
.testimonial-card {
    background: var(--ph-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--ph-border);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--ph-accent);
}

.testimonial-content {
    color: var(--ph-gray);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--ph-gray);
}

/* --- Team Card --- */
.team-card {
    text-align: center;
    background: var(--ph-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--ph-border);
    transition: var(--transition);
    height: 100%;
}

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

.team-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.team-card h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--ph-primary);
    font-size: 14px;
    margin-bottom: 8px;
}

.team-card .bio {
    color: var(--ph-gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ph-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ph-primary);
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--ph-primary);
    color: var(--ph-white);
}

/* --- Blog Card --- */
.blog-card {
    background: var(--ph-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ph-border);
    transition: var(--transition);
    height: 100%;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: var(--ph-light);
    color: var(--ph-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.blog-card p {
    color: var(--ph-gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--ph-gray);
}

.blog-meta i {
    margin-right: 4px;
}

/* --- Contact Info Card --- */
.contact-card {
    text-align: center;
    padding: 24px;
    background: var(--ph-white);
    border-radius: 16px;
    border: 1px solid var(--ph-border);
    transition: var(--transition);
    height: 100%;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(123, 45, 142, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--ph-primary);
    font-size: 24px;
}

.contact-card h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-card .details {
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-card .subtext {
    font-size: 14px;
    color: var(--ph-gray);
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--ph-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--ph-border);
    background: var(--ph-white);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--ph-primary);
    box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.1);
}

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

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Glass Card --- */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 224, 235, 0.5);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* --- CTA Section --- */
.cta {
    background: var(--ph-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--ph-accent);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(100px);
}

.cta .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta h2 {
    color: var(--ph-white);
    font-size: 36px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 42px;
    }
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
}

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

/* --- Footer --- */
.footer {
    background: var(--ph-dark);
    color: var(--ph-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--ph-accent);
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--ph-white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--ph-accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ph-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--ph-accent);
    color: var(--ph-dark);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--ph-accent);
}

/* --- Two Column Layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.section-header-left {
    text-align: left;
    margin: 0 0 24px;
}

.section-header-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

/* --- Feature List --- */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li i {
    color: var(--ph-accent);
    margin-top: 4px;
}

/* --- Experience Badge --- */
.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--ph-accent);
    color: var(--ph-white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.experience-badge .number {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
}

.img-container {
    position: relative;
}

.img-rounded {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* --- Value Card --- */
.value-card {
    text-align: center;
    padding: 24px;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--ph-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--ph-primary);
    font-size: 28px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--ph-gray);
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ph-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
    padding-left: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--ph-primary);
    border-radius: 50%;
    margin-left: -7px;
}

.timeline-item .glass-card {
    padding: 24px;
}

.timeline-year {
    color: var(--ph-primary);
    font-weight: 700;
    font-size: 18px;
}

.timeline-item h4 {
    font-size: 20px;
    margin: 8px 0;
}

.timeline-item p {
    color: var(--ph-gray);
    margin: 0;
}

/* --- Process Step --- */
.process-step {
    position: relative;
    padding-left: 16px;
}

.process-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(123, 45, 142, 0.1);
    position: absolute;
    top: -16px;
    left: -8px;
    line-height: 1;
}

.process-content {
    position: relative;
    padding-top: 32px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--ph-gray);
}

/* --- Category Pills --- */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ph-border);
}

.category-pill {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background: var(--ph-light);
    color: var(--ph-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
    background: var(--ph-primary);
    color: var(--ph-white);
}

/* --- Search Box --- */
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ph-gray);
}

.search-box input {
    padding-left: 48px;
}

/* --- Featured Testimonial --- */
.featured-testimonial {
    position: relative;
    padding: 48px;
}

.featured-testimonial .quote-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 96px;
    color: rgba(123, 45, 142, 0.05);
}

.featured-testimonial .stars {
    font-size: 24px;
    margin-bottom: 24px;
}

.featured-testimonial blockquote {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

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

.featured-testimonial .author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-testimonial .author h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.featured-testimonial .author span {
    color: var(--ph-gray);
}

/* --- Quick Contact Card --- */
.quick-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--ph-white);
    border-radius: 16px;
    border: 1px solid var(--ph-border);
}

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

.quick-contact-icon.purple {
    background: rgba(123, 45, 142, 0.1);
    color: var(--ph-primary);
}

.quick-contact-icon.orange {
    background: rgba(245, 166, 35, 0.1);
    color: var(--ph-accent);
}

.quick-contact-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--ph-green);
}

.quick-contact-card h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.quick-contact-card p {
    font-size: 14px;
    color: var(--ph-gray);
    margin-bottom: 12px;
}

/* --- Map --- */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 24px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Mobile Navigation --- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ph-white);
    z-index: 999;
    padding: 100px 20px 40px;
    flex-direction: column;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--ph-dark);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--ph-light);
    color: var(--ph-primary);
}

.mobile-nav .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {
    .nav {
        display: none;
    }
    
    .header .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .floating-card,
    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-flex;
    }
}

/* --- Utilities --- */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--ph-white);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 32px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
