/* ===============================================
   🎨 L.H.U - MORTGAGE & FINANCIAL CONSULTING
   ===============================================
   צבעים: כסף יוקרתי + כחול עמוק + זהב
   כסף מטאלי, כחול נייבי, נגיעות זהב
   =============================================== */

/* ============== CSS VARIABLES ============== */
:root {
    /* צבעים עיקריים - כסף דינמי */
    --primary-silver: #C0C0C0;        /* כסף בהיר - לוגו והדגשות */
    --silver-metallic: #A8A9AD;       /* כסף מטאלי - טקסטים חשובים */
    --silver-dark: #71797E;           /* כסף כהה - גבולות */
    
    /* צבעים משניים - כחול עמוק יוקרתי */
    --navy-deep: #0A2540;             /* כחול נייבי עמוק - רקעים */
    --royal-blue: #2C5F8D;            /* כחול רויאל - כפתורים */
    
    /* צבעי מבטא - זהב עדין */
    --gold-champagne: #C9A961;        /* זהב שמפניה - מבטאים */
    --bronze: #CD7F32;                /* ברונזה - הדגשות */
    
    /* רקעים */
    --bg-dark: #0D1117;               /* שחור עמוק */
    --bg-darker: #0D1117;             /* שחור עמוק */
    --bg-card: #1A1F2E;               /* אפור כהה - כרטיסים */
    --bg-card-hover: #242B3D;         /* אפור כהה יותר - hover */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    
    /* טקסט */
    --text-primary: #FAFAF9;          /* לבן חם */
    --text-secondary: #C0C0C0;        /* כסף בהיר */
    --text-muted: #A8A9AD;            /* כסף מטאלי */
    --text-dark: #1E293B;
    
    /* צללים */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(192, 192, 192, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(201, 169, 97, 0.3);
    
    /* מרווחים */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* פונטים */
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Assistant', sans-serif;
}

/* ============== RESET & BASE ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-silver);
}

ul {
    list-style: none;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============== CONTAINER ============== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--silver-metallic) 100%);
    color: var(--navy-deep);
    border-color: var(--primary-silver);
    box-shadow: var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--primary-silver) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-silver);
    border-color: var(--primary-silver);
}

.btn-secondary:hover {
    background: var(--primary-silver);
    color: var(--navy-deep);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============== HEADER ============== */
.header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--navy-deep) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* לוגו */
.logo a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: none;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ניווט */
.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-silver), var(--gold-champagne));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-silver);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* CTA בheader */
.header-cta {
    white-space: nowrap;
}

/* תפריט המבורגר */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-silver);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============== HERO SECTION ============== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    padding: var(--spacing-xl) 0;
    text-align: center;
    overflow: hidden;
}

/* אנימציית רקע גרדיאנט */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(192, 192, 192, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: gradientMove 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* הפוס נקודות ברקע */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(192, 192, 192, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* סטטיסטיקות עם אנימציה */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ============== ANIMATIONS ============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============== SECTION HEADER ============== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease;
}

.section-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-silver), var(--gold-champagne));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============== SERVICES SECTION ============== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-silver), var(--gold-champagne));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
    background: var(--bg-card-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(201, 169, 97, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-silver);
    transition: all 0.5s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    color: var(--navy-deep);
    box-shadow: var(--shadow-glow);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-silver);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============== WHY US SECTION ============== */
.why-us {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    position: relative;
    padding: 2rem;
    padding-right: 4rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
    background: var(--bg-card-hover);
}

.feature-number {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.feature-title {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============== CTA SECTION ============== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--navy-deep) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ============== CONTACT SECTION ============== */
.contact {
    padding: var(--spacing-lg) 0;
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-right: 4px solid transparent;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.contact-item:hover {
    background: var(--bg-card-hover);
    border-right-color: var(--primary-silver);
    transform: translateX(-5px);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--primary-silver);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
    color: var(--gold-champagne);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* טופס */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding: 0.875rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    color: var(--text-primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-silver);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    grid-column: 1 / -1;
    width: 100%;
}

.form-status {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.form-status.success {
    background: rgba(192, 192, 192, 0.2);
    color: var(--primary-silver);
    border: 1px solid var(--primary-silver);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid #EF4444;
}

/* ============== SOCIAL BLOCK ============== */
.contact-social-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    text-align: center;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-social-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-social-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-icons-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.social-icon-link:hover {
    transform: translateY(-5px);
}

.social-icon-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.social-icon-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.6);
}

.social-icon-link.facebook:hover {
    background: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

/* ============== FOOTER ============== */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-subtitle {
    color: var(--text-secondary);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-links a::before {
    content: '←';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-silver);
    padding-right: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* דיסקליימר */
.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* תחתית */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal a {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--primary-silver);
}

/* ============== ABOUT PAGE - STORY SECTION ============== */
.hero-about {
    min-height: 50vh;
    padding: var(--spacing-lg) 0;
}

.story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content h3 {
    color: var(--gold-champagne);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(201, 169, 97, 0.1) 100%);
    padding: 1.5rem;
    border-right: 4px solid var(--primary-silver);
    border-radius: 8px;
    margin-top: 2rem;
}

.story-highlight p {
    margin: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

/* ============== TEAM SECTION ============== */
.team {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

.member-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(201, 169, 97, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
}

.member-name {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.member-role {
    padding: 0 1.5rem;
    margin: 0.25rem 0;
    color: var(--primary-silver);
    font-weight: 600;
    font-size: 0.9rem;
}

.member-bio {
    padding: 1rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.member-contact {
    padding: 1.5rem;
    padding-top: 1rem;
    background: rgba(192, 192, 192, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* ============== TEAM GRID 3 COLUMNS ============== */
.team-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
    .team-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .team-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* ============== PRICING PAGE ============== */
.hero-pricing {
    min-height: 50vh;
    padding: var(--spacing-lg) 0;
}

/* ============== PRICING SECTION ============== */
.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
}

.pricing-card-highlighted {
    border: 2px solid var(--gold-champagne);
    transform: scale(1.02);
}

.pricing-card-highlighted:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--bronze) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow-gold);
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--primary-silver);
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--primary-silver);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-text {
    line-height: 1.5;
}

.pricing-cta {
    padding: 0 2rem 2rem;
}

.pricing-cta .btn-primary {
    width: 100%;
}

.pricing-note {
    padding: 1rem 2rem;
    background: rgba(192, 192, 192, 0.05);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: auto;
}

.pricing-note p {
    margin: 0;
}

/* ============== FAQ SECTION ============== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-silver);
    background: var(--bg-card-hover);
}

.faq-question {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============== REMOTE / ZOOM BADGE ============== */
.remote-badge {
    background: rgba(192, 192, 192, 0.1);
    color: var(--primary-silver);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.remote-highlight {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 4px solid var(--gold-champagne);
}

/* ============== BLOG STYLES ============== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    height: 200px;
    background-color: var(--bg-darker);
    background-position: center;
    background-size: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ============== ADMIN / LOGIN STYLES ============== */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.admin-dashboard {
    display: none;
}

.editor-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.content-block {
    background: var(--bg-darker);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.remove-block-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    cursor: pointer;
}

.add-block-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--primary-silver);
    color: var(--primary-silver);
}

/* BLOG POST PAGE (Single) */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.post-section-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-section-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-section-image img {
    width: 100%;
    height: auto;
}

/* ============== RESPONSIVE DESIGN ============== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    html {
        font-size: 14px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .logo a {
        gap: 0.1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    /* Navigation Mobile - HIDDEN BY DEFAULT */
    .nav {
        position: fixed !important;
        top: 70px !important;
        right: -100% !important;
        width: 100% !important;
        max-width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--bg-darker) 0%, var(--navy-deep) 100%);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 2rem 1rem;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(192, 192, 192, 0.2);
    }
    
    /* SHOW WHEN ACTIVE */
    .nav.active {
        right: 0 !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        color: var(--text-secondary);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        padding-right: 1rem;
        border-right: 3px solid var(--primary-silver);
        color: var(--primary-silver);
    }
    
    /* Hamburger Menu */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 0;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-silver);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
        display: block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Header CTA */
    .header-cta {
        display: none !important;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .contact-item {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .contact-icon {
        font-size: 1.25rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-cta {
        padding: 0 1.5rem 1.5rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-image {
        height: 150px;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-image {
        height: 150px;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 1rem;
        gap: 0.6rem;
    }
}

/* ============== UTILITIES ============== */
.text-center {
    text-align: center;
}
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ============== LOADING ANIMATION ============== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-silver);
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============== SCROLL ANIMATIONS ============== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============== PULSE ANIMATION FOR CTAs ============== */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(192, 192, 192, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(192, 192, 192, 0);
    }
}

.btn-primary:hover {
    animation: pulse 1.5s infinite;
}

/* ============== GLOW EFFECTS ============== */
.glow-silver {
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}
.glow-gold {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

/* ============== CUSTOM SCROLLBAR ============== */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-silver) 0%, var(--gold-champagne) 100%);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-silver);
}

/* ============== SELECTION COLOR ============== */
::selection {
    background: var(--primary-silver);
    color: var(--navy-deep);
}
::-moz-selection {
    background: var(--primary-silver);
    color: var(--navy-deep);
}