/* ===== MyGeekPC Stylesheet ===== */
/* Navy/Gold/White Palette - "Trusted Advisor" Aesthetic */

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --navy: #0A2540;
    --navy-light: #1A3A5C;
    --navy-dark: #061829;
    --gold: #C8A64C;
    --gold-light: #E8D9A8;
    --gold-dark: #A8882C;
    --gray-light: #F5F7FA;
    --gray: #6B7280;
    --gray-dark: #4B5563;
    --text: #1F2937;
    --border: #E5E7EB;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-lg {
    font-size: 1.15rem;
    padding: 1.25rem 2.5rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(200, 166, 76, 0.35);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 166, 76, 0.45);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ===== PHONE BAR ===== */
.phone-bar {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem var(--space-md);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.phone-bar a {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.phone-bar a:hover {
    color: var(--gold);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.logo span {
    color: var(--gold);
}

.main-nav {
    display: flex;
    gap: var(--space-lg);
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.main-nav a:hover {
    color: var(--navy);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-phone {
    font-weight: 600;
    color: var(--navy);
}

/* ===== HERO ===== */
.hero {
    background: var(--white);
    padding: var(--space-xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 520px;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    background: var(--gold-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.hero-subtext {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: var(--space-lg);
}

.hero-trust {
    margin-top: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.trust-item .icon {
    color: var(--gold);
    font-weight: 700;
}

.hero-portrait {
    display: flex;
    justify-content: center;
}

.portrait-frame {
    position: relative;
    max-width: 450px;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 4px solid var(--gold);
    border-radius: 12px;
}

.portrait-frame img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.3);
}

.experience-badge .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== DIFFERENTIATOR ===== */
.differentiator {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-xl);
    align-items: center;
}

.diff-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.diff-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.diff-content strong {
    color: var(--gold);
}

.diff-content .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin: var(--space-md) 0;
}

.diff-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s var(--ease);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.card-link {
    font-weight: 600;
    color: var(--gold-dark);
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--navy);
}

/* ===== MEMBERSHIP TEASER ===== */
.membership-teaser {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
}

.teaser-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.teaser-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.teaser-content p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.google-link {
    color: var(--gold-dark);
    font-weight: 600;
    transition: color 0.2s;
}

.google-link:hover {
    color: var(--navy);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--gray-light);
    padding: var(--space-lg);
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--navy);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: var(--space-2xl) 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.final-cta > .container > p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.phone-display {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: var(--space-md);
    transition: transform 0.3s var(--ease);
}

.phone-display:hover {
    transform: scale(1.05);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-brand > p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact strong {
    color: var(--gold);
}

.footer-social {
    margin-top: var(--space-sm);
    display: flex;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.footer-social a {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social span {
    opacity: 0.3;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    opacity: 0.7;
    padding: 0.35rem 0;
    transition: all 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-md);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-xl) 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: var(--space-xl) 0;
}

.content-section:nth-child(even) {
    background: var(--off-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

/* ===== PRICING/MEMBERSHIP CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(200, 166, 76, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-card .description {
    color: var(--gray);
    margin: var(--space-sm) 0 var(--space-md);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-lg);
}

.pricing-card li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.quote-block {
    background: var(--gold-light);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    margin: var(--space-xl) 0;
}

.quote-block blockquote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto var(--space-md);
}

.quote-block cite {
    font-size: 1rem;
    color: var(--gray);
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    padding: var(--space-xl) 0;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.service-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-grid,
    .diff-grid,
    .about-intro {
        gap: var(--space-lg);
    }
}

@media (max-width: 900px) {
    html {
        font-size: 16px;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-grid,
    .diff-grid,
    .content-grid,
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .hero-portrait {
        order: 1;
        margin-bottom: var(--space-md);
    }
    
    .portrait-frame {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .experience-badge {
        left: auto;
        right: -15px;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .diff-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    
    .about-image {
        max-width: 280px;
        margin: 0 auto var(--space-lg);
    }
    
    .main-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-display {
        font-size: 2.2rem;
    }
}
