/* 
  ========================================
  CSS Variables & Global Styles
  ========================================
*/
:root {
    --color-black: #0a0a0a;
    --color-charcoal: #1c1c1c;
    --color-charcoal-light: #2d2d2d;
    --color-red: #8b0000;
    --color-red-bright: #a21010;
    --color-gold: #d4af37;
    --color-gold-light: #f3e5ab;
    --color-gold-dark: #aa8c2c;
    --color-text-main: #f5f5f5;
    --color-text-muted: #b0b0b0;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography Highlights */
.text-gold {
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 3rem;
}

/* 
  ========================================
  Buttons
  ========================================
*/
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-body);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-red);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-red-bright);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: var(--color-charcoal-light);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #ffd700);
    color: var(--color-black);
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffd700, var(--color-gold-light));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 6px 25px rgba(162, 16, 16, 0.6);
}

/* 
  ========================================
  Hero Section
  ========================================
*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Abstract dark elegant background placeholder */
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(28, 28, 28, 0.8));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--color-black) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.logos-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.crest-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.crest-logo {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.brand-logo {
    max-height: 120px;
    max-width: 250px;
    object-fit: contain;
}

.headline {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
  ========================================
  How It Works Section
  ========================================
*/
.how-it-works {
    padding: 6rem 0;
    background-color: var(--color-charcoal);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.step-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* 
  ========================================
  Pricing Section
  ========================================
*/
.packages-section {
    padding: 6rem 0;
    background-color: var(--color-black);
}

.packages-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    /* helps stack nicely if best value is slightly larger */
}

.pricing-card {
    background: linear-gradient(180deg, var(--color-charcoal) 0%, rgba(28, 28, 28, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-header {
    margin-bottom: 2rem;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features strong {
    color: #fff;
}

/* Best Value Card Modifications */
.pricing-card.best-value {
    background: linear-gradient(180deg, var(--color-red) 0%, rgba(139, 0, 0, 0.4) 100%);
    border-color: var(--color-red);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.best-value:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    border-color: var(--color-red-bright);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.best-value .package-price {
    color: #fff;
}

.pricing-card.best-value .package-features li {
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Premium Tier Modifications */
.pricing-card.premium-tier {
    border-color: rgba(212, 175, 55, 0.2);
}

/* 
  ========================================
  Footer
  ========================================
*/
.site-footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-contact h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.link-hover {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.link-hover:hover {
    color: var(--color-gold);
}

.footer-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.85rem;
}

/* 
  ========================================
  Media Queries
  ========================================
*/
@media (max-width: 992px) {
    .headline {
        font-size: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card.best-value {
        transform: none;
    }

    .pricing-card.best-value:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.25rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}