/* ===========================================
   TRISHA SCHOENJR - PROFESSIONAL BOOK SPECIALIST
   Complete Stylesheet - 2026
   =========================================== */

/* --- CSS Variables --- */
:root {
    --primary: #6B2D3E;
    --primary-dark: #4E1F2D;
    --primary-light: #8A3C52;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #A88B4A;
    --cream: #FDF8F0;
    --ivory: #FAF6F1;
    --white: #FFFFFF;
    --charcoal: #2C2C2C;
    --dark: #1A1A1A;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #E8E0D6;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 5px 30px rgba(201,169,110,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-ui: 'Montserrat', Arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.75;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(420px circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(201,169,110,0.1), transparent 68%);
    transition: opacity 0.5s ease;
}

body.cursor-active::before {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    outline: none;
}

/* --- Intro Animation --- */
.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--primary-dark);
    color: var(--white);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-card {
    width: min(100%, 520px);
    text-align: center;
    animation: introCardIn 0.9s ease both;
}

.intro-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: left;
}

.intro-image {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 8px rgba(201,169,110,0.12);
    animation: introImageIn 0.9s ease 0.15s both;
}

.intro-copy {
    overflow: hidden;
}

.intro-kicker {
    color: var(--gold-light);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: introTextIn 0.7s ease 0.35s both;
}

.intro-copy h1 {
    margin: 3px 0 4px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    animation: introTextIn 0.7s ease 0.5s both;
}

.intro-specialization {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
    animation: introTextIn 0.7s ease 0.65s both;
}

.intro-rule {
    width: 100%;
    height: 1px;
    margin-top: 30px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform-origin: center;
    animation: introRuleIn 0.9s ease 0.8s both;
}

@keyframes introCardIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes introImageIn {
    from { opacity: 0; transform: scale(0.5) rotate(-12deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes introTextIn {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes introRuleIn {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
}

body.intro-active {
    overflow: hidden;
}

@media (max-width: 480px) {
    .intro-profile {
        gap: 16px;
    }

    .intro-image {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }

    .intro-kicker {
        letter-spacing: 2px;
    }

    .intro-specialization {
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-card,
    .intro-image,
    .intro-kicker,
    .intro-copy h1,
    .intro-specialization,
    .intro-rule {
        animation: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(201,169,110,0.3); }
    50% { box-shadow: 0 0 20px rgba(201,169,110,0.6); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-on-scroll.visible {
    animation: revealSettle 0.9s ease both;
}

@keyframes revealSettle {
    0% { filter: blur(3px); }
    100% { filter: blur(0); }
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-family: var(--font-ui);
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--gold);
}

.top-bar a:hover {
    color: var(--gold-light);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right .social-sm {
    display: flex;
    gap: 10px;
}

.top-bar-right .social-sm a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.top-bar-right .social-sm a:hover {
    color: var(--gold);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 39px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 18px 0;
}

.navbar.scrolled {
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.navbar.scrolled .top-bar {
    display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    transition: var(--transition);
}

.navbar.scrolled .logo-name {
    color: var(--primary);
}

.logo-tagline {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.navbar.scrolled .nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--primary-dark) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107,45,62,0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-center {
    text-align: center;
    margin-top: 48px;
}

/* --- Section Styles --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-cream {
    background: var(--cream);
}

.section-ivory {
    background: var(--ivory);
}

.section-dark {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-dark .section-title,
.section-primary .section-title {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.8;
}

.section-dark .section-subtitle,
.section-primary .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 60px;
}

/* --- Decorative Elements --- */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px 0;
    border-radius: 2px;
}

.text-center .gold-line {
    margin-left: auto;
    margin-right: auto;
}

.section-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08), transparent);
    pointer-events: none;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a0f14 0%, var(--primary-dark) 40%, var(--primary) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201,169,110,0.3), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,169,110,0.2), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(201,169,110,0.15), transparent 50%);
    z-index: 1;
    transform: translate3d(0, var(--hero-pattern-y, 0px), 0) scale(1.08);
    transition: transform 0.2s linear;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 2;
    background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(201,169,110,0.12), rgba(0,0,0,0.28) 42%);
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 24px;
    translate: 0 var(--hero-content-y, 0px);
    will-change: translate;
}

.hero-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    object-fit: cover;
    margin: 0 auto 30px;
    animation: fadeInDown 1s ease both, goldGlow 3s ease-in-out infinite;
    translate: var(--hero-image-x, 0px) var(--hero-image-y, 0px);
    will-change: translate;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.85;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-trust-item {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item i {
    color: var(--gold);
    font-size: 14px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold);
    font-size: 20px;
    animation: bounce 2.5s infinite;
}

/* Floating decorative circles in hero */
.hero-float-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 50%;
    top: 10%;
    left: -5%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    translate: 0 var(--hero-float-y, 0px);
    will-change: translate;
}

.hero-float-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: 50%;
    bottom: 15%;
    right: -3%;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
    translate: 0 var(--hero-float-y-reverse, 0px);
    will-change: translate;
}

/* ===========================================
   PAGE HEADER (Inner Pages)
   =========================================== */
.page-header {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a0f14 0%, var(--primary-dark) 40%, var(--primary) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.page-header-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeInUp 0.7s ease both;
}

.page-header-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 16px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.breadcrumb {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    animation: fadeInUp 0.7s ease 0.4s both;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===========================================
   ABOUT PREVIEW (Home)
   =========================================== */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.about-preview-img-wrap {
    position: relative;
}

.about-preview-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 550px;
}

.about-preview-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
}

.about-preview-badge h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.about-preview-badge p {
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.about-preview-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* ===========================================
   SERVICE CARDS
   =========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .btn {
    padding: 10px 24px;
    font-size: 11px;
}

/* ===========================================
   PROCESS / HOW IT WORKS
   =========================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-number {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: var(--shadow-gold);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===========================================
   STATS
   =========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.15;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--charcoal);
}

.testimonial-author-info p {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}

/* Full page testimonials */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card-full {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
    position: relative;
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===========================================
   CTA SECTIONS
   =========================================== */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-gold:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
}

.cta-trust {
    margin-top: 24px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===========================================
   PRICING
   =========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.pricing-card .pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.pricing-amount .currency {
    font-size: 1.3rem;
    color: var(--primary);
    vertical-align: top;
    font-weight: 600;
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card ul {
    margin-bottom: 28px;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card ul li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===========================================
   PORTFOLIO
   =========================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.portfolio-card-header {
    padding: 28px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.portfolio-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-badge {
    background: var(--cream);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-meta {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    white-space: nowrap;
}

.portfolio-card-body {
    padding: 20px 28px 28px;
}

.portfolio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.portfolio-card h4 {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 16px;
    margin-bottom: 6px;
}

.portfolio-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.portfolio-comm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: var(--cream);
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 600;
}

/* ===========================================
   BLOG
   =========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--cream), var(--ivory));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-img i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}

.blog-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--gold);
    gap: 14px;
}

/* Newsletter */
.newsletter-box {
    background: var(--cream);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 60px;
    border: 2px solid var(--gold);
}

.newsletter-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.newsletter-box p {
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-info-col h2 {
    margin-bottom: 16px;
}

.contact-info-col > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--gold);
}

.contact-detail-icon i {
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.contact-detail-item:hover .contact-detail-icon i {
    color: var(--white);
}

.contact-detail-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.contact-detail-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gmail Reasons */
.gmail-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gmail-reason {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.gmail-reason:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.gmail-reason h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.gmail-reason p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--cream);
    padding: 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107,45,62,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: auto;
    accent-color: var(--primary);
}

.form-checkbox label {
    margin: 0;
    text-transform: none;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--text-light);
}

.form-success {
    display: none;
    padding: 16px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: 14px;
    margin-top: 16px;
    border: 1px solid #c8e6c9;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(107,45,62,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===========================================
   WHY CHOOSE ME
   =========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===========================================
   SERVICE DETAIL (Services Page)
   =========================================== */
.service-detail {
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 26px;
    color: var(--white);
}

.service-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.service-detail h4 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.process-list {
    counter-reset: process;
}

.process-list li {
    padding: 10px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--border);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlights-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
}

.highlights-list li i {
    color: var(--gold);
    margin-top: 5px;
    flex-shrink: 0;
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--charcoal);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===========================================
   ABOUT PAGE SPECIFIC
   =========================================== */
.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-exp-badge h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
}

.about-exp-badge p {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.credential-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.credential-icon i {
    font-size: 24px;
    color: var(--gold);
}

.credential-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.credential-card ul li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--text-light);
}

/* Philosophy Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Mission Vision Values */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mvv-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mvv-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mvv-icon i {
    font-size: 26px;
    color: var(--primary);
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.mvv-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--primary));
}

.timeline-item {
    position: relative;
    width: 47%;
    padding: 20px 0;
}

.timeline-item.left {
    margin-right: auto;
    text-align: right;
    padding-right: 40px;
}

.timeline-item.right {
    margin-left: auto;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 28px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
    z-index: 1;
}

.timeline-item.left::before {
    right: -7px;
}

.timeline-item.right::before {
    left: -7px;
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-year {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 80px 0 0;
}

.footer-intro {
    margin-bottom: 58px;
    padding: 34px;
    border: 1px solid rgba(201,169,110,0.35);
    background: linear-gradient(135deg, rgba(107,45,62,0.4), rgba(26,26,26,0.7));
    border-radius: var(--radius);
    text-align: center;
    perspective: 900px;
}

.footer-intro h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 26px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    text-align: left;
}

.footer-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 92px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.72);
    transition: transform 0.45s ease, background 0.45s ease, border-color 0.45s ease;
}

.footer-contact-card:hover {
    background: rgba(201,169,110,0.14);
    border-color: var(--gold);
    transform: perspective(900px) rotateX(5deg) translateY(-6px);
}

.footer-contact-card > i {
    flex: 0 0 24px;
    padding-top: 3px;
    color: var(--gold);
    font-size: 18px;
    text-align: center;
}

.footer-contact-card span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-card strong {
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.6px;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer-contact-card small {
    color: rgba(255,255,255,0.58);
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col h3 i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-col h4 {
    font-family: var(--font-ui);
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--gold);
}

/* ===========================================
   BACK TO TOP
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.back-to-top.visible {
    display: flex;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .credentials-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .mvv-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .gmail-reasons { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        z-index: 1001;
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        color: var(--white) !important;
        font-size: 15px;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .navbar { top: 0; padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }

    .hero-title { font-size: 2.4rem; }
    .hero-image { width: 100px; height: 100px; }
    .section-title { font-size: 2rem; }
    .page-header-title { font-size: 2.2rem; }

    .about-preview-grid,
    .about-full-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .services-grid,
    .testimonials-grid,
    .testimonials-full-grid,
    .blog-grid,
    .portfolio-grid,
    .pricing-grid,
    .pillars-grid,
    .mvv-grid { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-intro { padding: 28px 20px; }

    .hero-btns { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; }

    .btn-group { flex-direction: column; align-items: stretch; }

    .form-row { grid-template-columns: 1fr; }

    .about-exp-badge,
    .about-preview-badge {
        position: relative;
        bottom: auto; right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    .service-detail-grid { grid-template-columns: 1fr; }

    .newsletter-form { flex-direction: column; }
    .newsletter-box { padding: 30px 20px; }
    .contact-form-wrap { padding: 28px 20px; }

    .timeline::before { left: 16px; }
    .timeline-item { width: 100%; padding-left: 48px; padding-right: 0; }
    .timeline-item.left { margin-right: 0; text-align: left; padding-right: 0; padding-left: 48px; }
    .timeline-item.right { margin-left: 0; }
    .timeline-item.left::before,
    .timeline-item.right::before { left: 9px; right: auto; }

    .cta-trust { flex-direction: column; align-items: center; }

    .section { padding: 70px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
    .section-title { font-size: 1.7rem; }
    .stat-number { font-size: 2.4rem; }
    .btn { padding: 12px 28px; font-size: 12px; }
    .section { padding: 50px 0; }
    .pricing-amount .price { font-size: 2.4rem; }
    .footer-contact-grid { grid-template-columns: 1fr; }
    .footer-intro h2 { font-size: 1.65rem; }
}