/* ====================================
   CSS Variables for Easy Customization
   ==================================== */
:root {
    /* Colors - Easy to change! */
    --primary-color: #0A2540;
    --secondary-color: #1e5a8e;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e5e5e5;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

/* ====================================
   Base Styles
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.logo-img {
    height: 56px;
    width: auto;
}

.logo-text {
    display: none;
}

@media (max-width: 768px) {
    .logo-img {
        height: 44px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A2540 0%, #1e5a8e 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 90, 142, 0.15) 0%, transparent 50%);
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 60px 0;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #e5c047;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-pick {
    background: var(--secondary-color);
    color: white;
    width: 100%;
    text-align: center;
}

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

/* ====================================
   Section Titles
   ==================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* ====================================
   Categories Section
   ==================================== */
.categories {
    padding: var(--section-padding);
    background: var(--background-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-arrow {
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================
   Top Picks Section
   ==================================== */
.top-picks {
    padding: var(--section-padding);
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.pick-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(30, 90, 142, 0.15);
}

.pick-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #c99d2e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pick-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.pick-category {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.pick-features {
    list-style: none;
    margin-bottom: 25px;
}

.pick-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--background-light);
    color: var(--text-dark);
    font-size: 15px;
}

.pick-features li:last-child {
    border-bottom: none;
}

.pick-features li::before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

/* ====================================
   Trust Section
   ==================================== */
.trust-section {
    padding: 60px 20px;
    background: var(--primary-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.trust-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    font-style: italic;
}

/* ====================================
   Category Page Styles
   ==================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Pills */
.filter-section {
    background: var(--background-light);
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 73px;
    z-index: 999;
}

.filter-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.pill.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Comparison Cards */
.comparison-section {
    padding: 60px 20px;
    background: var(--background-light);
}

.comparison-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.card-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--background-light), white);
    border-bottom: 1px solid var(--border-color);
}

.card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.best {
    background: linear-gradient(135deg, var(--accent-color), #c99d2e);
    color: white;
}

.card-badge.popular {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.card-badge.business {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.card-type {
    color: var(--text-light);
    font-size: 16px;
}

.card-body {
    padding: 30px;
}

.card-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.highlight-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.highlight-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.highlight-subtext {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
}

.stat {
    font-size: 15px;
    line-height: 1.6;
}

.stat strong {
    color: var(--primary-color);
}

.card-features {
    margin-bottom: 30px;
}

.card-features h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.card-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros h4 {
    color: #28a745;
    font-size: 18px;
    margin-bottom: 12px;
}

.cons h4 {
    color: #dc3545;
    font-size: 18px;
    margin-bottom: 12px;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.card-footer {
    padding: 30px;
    background: var(--background-light);
    text-align: center;
}

.btn-full {
    width: 100%;
    max-width: 400px;
    display: inline-block;
}

.card-disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* Guide Section */
.guide-section {
    padding: var(--section-padding);
    background: white;
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.guide-card {
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guide-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(30, 90, 142, 0.1);
}

.guide-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.guide-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Ad Section */
.ad-section {
    padding: 40px 20px;
    background: var(--background-light);
}

.ad-placeholder {
    min-height: 250px;
    background: white;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    .card-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .card-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .category-grid,
    .picks-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .card-name {
        font-size: 26px;
    }
    
    .highlight-value {
        font-size: 28px;
    }
    
    .filter-pills {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
}