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

:root {
    --primary-green: #0B2E22;
    --primary-beige: #FCF5D8;
    --accent-gold: #D4AF37;
    --text-muted: rgba(252, 245, 216, 0.8);
    --border-color: rgba(252, 245, 216, 0.3);
}

body {
    font-family: 'Merriweather', serif;
    background-color: var(--primary-green);
    color: var(--primary-beige);
    line-height: 1.8;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Links - Global beige color */
a {
    color: var(--primary-beige);
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

/* Header and Navigation */
header {
    background-color: rgba(11, 46, 34, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

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

.phone-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
}

.phone-header:hover {
    color: var(--primary-beige);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-beige);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(11, 46, 34, 1) 0%, rgba(15, 56, 42, 1) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(252, 245, 216, 0.03) 2px, rgba(252, 245, 216, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(252, 245, 216, 0.03) 2px, rgba(252, 245, 216, 0.03) 4px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-beige);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-beige);
    border: 2px solid var(--primary-beige);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-beige);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Window Illustrations */
.window-illustration {
    max-width: 600px;
    margin: 3rem auto;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(252, 245, 216, 0.05);
}

.window-header {
    background-color: rgba(252, 245, 216, 0.15);
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-beige);
    opacity: 0.6;
}

.window-content {
    padding: 2rem;
    min-height: 200px;
}

.browser-bar {
    height: 30px;
    background-color: rgba(252, 245, 216, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.block {
    height: 50px;
    background-color: rgba(252, 245, 216, 0.15);
    border-radius: 4px;
}

.block.small {
    height: 30px;
    width: 60%;
}

/* Vintage Window Variation */
.window-illustration.vintage .window-content {
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
}

.vintage-screen {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.screen-line {
    height: 20px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(252, 245, 216, 0.2) 10%, 
        rgba(252, 245, 216, 0.3) 50%, 
        rgba(252, 245, 216, 0.2) 90%, 
        transparent 100%);
    border-radius: 2px;
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    background-color: rgba(212, 175, 55, 0.1);
    text-align: center;
}

.reviews {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: rgba(252, 245, 216, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background-color: rgba(252, 245, 216, 0.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Target Icon (🎯) */
.icon-target {
    border-radius: 50%;
    border: 4px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.icon-target::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 3px solid var(--primary-beige);
    background: rgba(252, 245, 216, 0.1);
}

.icon-target::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* Lightning Icon (⚡) */
.icon-lightning {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
}

.icon-lightning::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 8px solid transparent;
    border-top: 35px solid var(--accent-gold);
    transform: rotate(-10deg);
}

.icon-lightning::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid var(--primary-beige);
    transform: rotate(-10deg) translateY(8px) translateX(5px);
}

/* Money Icon (💰) */
.icon-money {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 3px solid var(--accent-gold);
}

.icon-money::before {
    content: '$';
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: 'Merriweather', serif;
}

/* Globe Icon (🌐) */
.icon-globe {
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
}

.icon-globe::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-beige);
    top: 50%;
    transform: translateY(-50%);
}

.icon-globe::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    border-left: 2px solid var(--primary-beige);
    border-right: 2px solid var(--primary-beige);
    border-radius: 50%;
    left: 25%;
}

/* Euro Icon (€) */
.icon-euro {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 3px solid var(--accent-gold);
}

.icon-euro::before {
    content: '€';
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: 'Merriweather', serif;
}

/* Check Icon (✓) */
.icon-check {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 3px solid var(--accent-gold);
}

.icon-check::before {
    content: '✓';
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-beige);
}

/* Card Icon (💳) */
.icon-card {
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 3px solid var(--accent-gold);
}

.icon-card::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 60%;
    border: 2px solid var(--primary-beige);
    border-radius: 4px;
}

.icon-card::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    top: 35%;
}

/* Rocket Icon (🚀) */
.icon-rocket {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.icon-rocket::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 45px solid var(--accent-gold);
}

.icon-rocket::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--primary-beige);
    border-radius: 50%;
    bottom: 5px;
}

/* Small Check Icon for bullet points */
.icon-check-small {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-green);
    font-weight: 900;
    font-size: 1rem;
}

.icon-check-small::before {
    content: '✓';
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit {
    padding: 1rem;
    background-color: rgba(252, 245, 216, 0.05);
    border-left: 3px solid var(--accent-gold);
    font-weight: 400;
}

/* Feature List for clean bullet points */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.2rem;
}

.feature-list li strong {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Urgency Section */
.urgency-section {
    padding: 6rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.urgency-section h2 {
    margin-bottom: 2rem;
}

.reasons-list {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto 3rem;
    padding-left: 2rem;
}

.reasons-list li {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.reviews-score {
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: rgba(252, 245, 216, 0.03);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-gold);
}

/* Guarantee Section */
.guarantee {
    padding: 4rem 0;
    background-color: rgba(212, 175, 55, 0.1);
    text-align: center;
}

.guarantee h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    position: relative;
    background-color: rgba(252, 245, 216, 0.03);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin: 1rem 0;
}

.price-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* Cities Section */
.cities {
    padding: 6rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.cities h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.cities-grid a {
    padding: 1rem;
    background-color: rgba(252, 245, 216, 0.05);
    border: 1px solid var(--border-color);
    color: var(--primary-beige);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cities-grid a:hover {
    background-color: rgba(252, 245, 216, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.cities-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    padding: 2rem;
    border-left: 3px solid var(--accent-gold);
    background-color: rgba(252, 245, 216, 0.03);
}

.faq-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
}

.faq .cta-button {
    display: block;
    margin: 3rem auto 0;
    width: fit-content;
}

/* PSEO Section */
.pseo-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(11, 46, 34, 0.5) 0%, rgba(15, 56, 42, 0.5) 100%);
}

.pseo-content {
    margin-top: 3rem;
}

.pseo-description {
    margin-bottom: 4rem;
}

.pseo-description h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.pseo-description p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.pseo-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(252, 245, 216, 0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.pseo-benefits h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.pseo-benefits ul {
    list-style: none;
}

.pseo-benefits ul li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.pseo-packages h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.pseo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pseo-card {
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    background-color: rgba(252, 245, 216, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.pseo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.pseo-card.featured {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.pseo-card h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.pseo-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pseo-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1.5rem 0;
}

.pseo-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-gold);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-button-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-map iframe {
    margin-top: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section h4 span {
    color: var(--primary-beige);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Local Pages Specific Styles */
.local-intro {
    padding: 3rem 0 2rem;
    background-color: rgba(252, 245, 216, 0.02);
}

.intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.intro-header h2 {
    margin-bottom: 1rem;
}

.intro-description {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 400;
}

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

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

/* Content Section - Main Text Content */
.content-section {
    padding: 3rem 0;
    background-color: rgba(252, 245, 216, 0.03);
}

.content-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

.content-text p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.content-section .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.content-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Why Website Section */
.why-website {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(11, 46, 34, 1) 0%, rgba(15, 56, 42, 1) 100%);
}

.why-website h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: rgba(252, 245, 216, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    background-color: rgba(252, 245, 216, 0.08);
}

.benefit-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(212, 175, 55, 0.7) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-green);
}

.benefit-card h3 {
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
}

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

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-beige);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Benefit Icon Styles */
.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.expertise-content h2 {
    margin-bottom: 1.5rem;
}

.expertise-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.expertise-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expertise-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(252, 245, 216, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-gold);
    text-align: left;
}

.point-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 900;
    flex-shrink: 0;
}

.expertise-point p {
    color: var(--primary-beige);
    margin: 0;
    line-height: 1.6;
}

/* Original local-intro for compatibility */
.old-local-intro,
.local-features,
.local-services,
.local-testimonial,
.local-pricing,
.local-areas,
.local-faq,
.local-cta {
    padding: 4rem 0;
}

.local-intro {
    background-color: rgba(0, 0, 0, 0.1);
}

.local-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 1.5rem;
    background-color: rgba(252, 245, 216, 0.03);
    border-left: 3px solid var(--accent-gold);
}

.service-item h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.areas-text {
    margin: 2rem 0;
    text-align: center;
}

.areas-text p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
}

.local-cta {
    background-color: rgba(212, 175, 55, 0.1);
    text-align: center;
}

.local-cta h2 {
    margin-bottom: 1rem;
}

.local-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0;
    text-align: center;
}

.contact-info {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    background-color: rgba(252, 245, 216, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-method h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

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

.legal-content a:hover {
    color: var(--primary-beige);
}

/* Mobile Menu Toggle */
.menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-toggle:focus + .hamburger {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-beige);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        flex-wrap: wrap;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(11, 46, 34, 0.98);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        width: 100%;
        z-index: 99;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .phone-header {
        font-size: 1rem;
        border-bottom: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .testimonials-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 0;
    }

    .features,
    .testimonials,
    .pricing,
    .faq {
        padding: 3rem 0;
    }
}

/* Breadcrumb Navigation SEO - Discreet Bottom Placement */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    opacity: 0.7;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.8rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(252, 245, 216, 0.6);
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: rgba(212, 175, 55, 0.5);
    font-size: 1rem;
}

.breadcrumb a {
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.breadcrumb li[aria-current="page"] {
    color: rgba(252, 245, 216, 0.6);
    font-weight: 400;
}

/* Internal Links Enhanced Section */
.internal-links-enhanced {
    background: linear-gradient(135deg, rgba(11, 46, 34, 0.95) 0%, rgba(11, 46, 34, 0.98) 100%);
    padding: 4rem 0;
    margin-top: 3rem;
    border-top: 3px solid var(--accent-gold);
    position: relative;
}

.internal-links-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.internal-links-enhanced h2 {
    color: var(--primary-beige);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.internal-links-enhanced h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.internal-links-section {
    margin-bottom: 3rem;
    background: rgba(252, 245, 216, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.internal-links-section:last-child {
    margin-bottom: 0;
}

.internal-links-section h3 {
    color: var(--accent-gold);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.internal-links-section h3::before {
    content: '⚡';
    font-size: 1.5rem;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.internal-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(252, 245, 216, 0.08) 0%, rgba(252, 245, 216, 0.04) 100%);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-beige);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.internal-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.internal-link:hover::before {
    transform: scaleY(1);
}

.internal-link:hover {
    background: linear-gradient(135deg, rgba(252, 245, 216, 0.12) 0%, rgba(252, 245, 216, 0.08) 100%);
    border-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.internal-link .link-icon {
    font-size: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.internal-link:hover .link-icon {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.1);
}

.internal-link .link-text {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .breadcrumb ol {
        padding: 0 1rem;
        font-size: 0.85rem;
    }
    
    .internal-links-enhanced {
        padding: 3rem 0;
    }
    
    .internal-links-enhanced h2 {
        font-size: 1.5rem;
    }
    
    .internal-links-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .internal-links-section h3 {
        font-size: 1.15rem;
    }
    
    .internal-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .internal-link {
        padding: 1rem 1.25rem;
    }
    
    .internal-link .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .internal-link .link-text {
        font-size: 0.95rem;
    }
}
