/*
Theme Name: SEO-Consultant.co
Theme URI: https://seo-consultant.co
Description: Premium SEO consultant WordPress theme - Black & Gold Design
Version: 1.0
Author: Syed
Author URI: https://seo-consultant.co
*/

/* ═══════════════════════════════════════════════════════════
   FONTS & VARIABLES
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --black: #000000;
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --white: #FFFFFF;
    --text-light: #E5E5E5;
    --text-gray: #999999;
    
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    --header-height: 65px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   HEADER - PURE BLACK, COMPACT
   ═══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--black);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav a {
    padding: 10px 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
}

.nav a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--black) !important;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════════════════════
   HERO - FIXED GAP, PROPER VIEWPORT
   ═══════════════════════════════════════════════════════════ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--header-height) 10px 20px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 10px 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
}

.stat-n {
    display: block;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-l {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE TEMPLATES
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: calc(var(--header-height) + 40px) 24px 60px;
    text-align: center;
}

.page-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.page-breadcrumb a {
    color: var(--gold);
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-wrapper p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 30px;
    color: var(--text-medium);
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-wrapper strong {
    color: var(--text-dark);
    font-weight: 600;
}

.content-wrapper a {
    color: var(--gold);
    text-decoration: underline;
}

.content-wrapper a:hover {
    color: var(--gold-dark);
}

.page-cta {
    padding: 80px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════
   REGIONS SECTION
   ═══════════════════════════════════════════════════════════ */
.regions-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.region-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.region-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.region-flag {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.region-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.region-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    min-height: 45px;
}

.region-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════════════ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.review-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   APPROACH SECTION
   ═══════════════════════════════════════════════════════════ */
.approach-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.approach-box {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 32px 28px;
}

.approach-box h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.approach-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.approach-box p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════════════════════ */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge.gold {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
}

/* ═══════════════════════════════════════════════════════════
   CARDS & GRIDS
   ═══════════════════════════════════════════════════════════ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--white);
    margin-bottom: 16px;
}

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

.list {
    list-style: none;
    margin-bottom: 20px;
}

.list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.card-note {
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING - COMPACT & NICE BOXES
   ═══════════════════════════════════════════════════════════ */
.pricing-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.price-box.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-box h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.price-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.price-box .list {
    text-align: left;
    margin-bottom: 24px;
}

.price-box .list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 24px;
}

.price-box .list li:before {
    font-size: 0.85rem;
}

.price-box .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.faq-q {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.faq-a {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-sub {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-cta {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
}

.contact-guarantee {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
    padding: 60px 0 28px;
}

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

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-desc {
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - ALL BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-compact {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .price-box.featured {
        border: 2px solid var(--gold);
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: var(--black);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
    
    .nav-cta {
        margin: 16px 0 0 0 !important;
        text-align: center;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo-main {
        font-size: 0.95rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .logo-icon img {
        width: 100%;
        height: 100%;
    }
    
    .hero {
        padding: calc(var(--header-height) + 20px) 20px 40px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 24px 16px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .card, .price-card, .faq-item, .contact-card {
        padding: 24px 20px;
    }
    
    .price-box {
        padding: 24px 20px;
    }
    
    .approach-box {
        padding: 24px 20px;
    }
    
    .contact-cta {
        padding: 32px 20px;
    }
    
    .footer {
        padding: 50px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}