/* V2 - Cleaner, simpler design inspired by Wayback Machine version */

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

:root {
    --primary-color: #73600f;
    --secondary-color: #FFD700;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent: #FF9800;
}

body {
    font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--dark-bg);
    font-size: 18px;
}

/* Header */
header {
    background: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.header-dark {
    background: #1a1a1a;
}

header.header-mustard {
    background: var(--primary-color);
}

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

.logo-link {
    text-decoration: none;
}

.logo {
    font-family: 'Impact', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.book-btn {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #4a3c0a);
    padding: 2rem 2rem;
    text-align: center;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.hero-left {
    flex: 0 0 400px;
    max-width: 400px;
}

.hero-right {
    flex: 1;
    text-align: center;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    gap: 1rem;
}

.hero-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.hero-logo:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 5.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    line-height: 1;
}

.hero-subtitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: #f5f5f5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: block;
    margin-top: 0.3rem;
}

.copyright {
    font-size: 1rem;
    font-weight: normal;
    vertical-align: middle;
}

.hero-cta {
    margin-top: 0;
}

.price-banner {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0;
    margin-top: 0;
}

.price-note {
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 0.8rem;
    margin-top: 0.2rem;
    font-style: italic;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Professional Banner */
.professional-banner {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

/* Section Separators */
.section-separator {
    height: 3px;
    background: var(--secondary-color);
    margin: 0;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Sections */
section {
    padding: 1rem 0;
}

/* Alternating section backgrounds - uniform pattern */
.hero {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
}

.intro {
    background: #1a1a1a;
}

.services {
    background: #73600f !important;
    background-color: #73600f !important;
}

.faq {
    background: #1a1a1a;
}

.understanding {
    background: #1a1a1a;
    padding: 2rem 1rem;
}

.understanding h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.understanding-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
    line-height: 1.1;
    white-space: nowrap;
    padding: 0 1rem;
}

/* Understanding Card Grid - 3x2 Layout */
.understanding-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .understanding-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Understanding Image Card */
.understanding-image-card {
    background: rgba(26, 26, 26, 0.95);
    border: 3px solid var(--secondary-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 380px;
}

.understanding-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--accent);
}

.understanding-card-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 1rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.understanding-image-card:hover .understanding-card-image {
    transform: scale(1.05);
}

/* Legacy Understanding Grid */
.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.understanding-card {
    background: rgba(26, 26, 26, 0.95);
    border: 3px solid var(--secondary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.understanding-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--accent);
}

.understanding-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.understanding-card p {
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.understanding-card .cta-button {
    background: var(--secondary-color);
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: auto;
}

.understanding-card .cta-button:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.blog {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
}

.testimonials {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
}

.book {
    background: #1a1a1a;
}

/* Contact section removed - gradient preserved for future use */
/* .contact {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
} */

h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section titles on mustard backgrounds - make them black */
.services h2,
.blog h2,
.testimonials h2 {
    color: #000000;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    filter: contrast(1.2);
}

/* Section titles on dark backgrounds - keep them gold */
.intro h2,
.faq h2,
.understanding h2,
.book h2 {
    color: var(--secondary-color);
}

/* Intro Section */

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(115, 96, 15, 0.2);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--secondary-color);
    border-right: 4px solid var(--secondary-color);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: var(--secondary-color);
}

/* Section Side-by-Side Layouts */
.section-with-image {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
}

.section-with-image.image-left {
    flex-direction: row;
}

.section-with-image.image-right {
    flex-direction: row;
}

.section-image-wrapper {
    flex: 0 0 40%;
    max-width: 500px;
}

.section-content {
    flex: 1;
}

.section-side-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 100px rgba(255,215,0,0.2);
    border: 4px solid var(--secondary-color);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.section-side-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 120px rgba(255,215,0,0.3);
}

/* Services Card Grid - 3x2 Layout matching FAQ */
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Image Card - Styled like service cards */
.service-image-card {
    background: rgba(115, 96, 15, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    min-height: 200px;
}

.service-image-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.service-card-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 1rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-card:hover .service-card-image {
    transform: scale(1.05);
}

/* Legacy Services Grid - keeping for compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    flex: 1;
}

.service-card {
    background: rgba(115, 96, 15, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid #000000;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Card Grid - Clean 3x2 Layout */
.faq-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .faq-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Image Card - Styled like other cards */
.faq-image-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 200px;
}

.faq-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    background: rgba(255, 215, 0, 0.08);
}

.faq-card-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 1rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-image-card:hover .faq-card-image {
    transform: scale(1.05);
}

.image-card-caption {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: bold;
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
}

.faq-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    background: rgba(255, 215, 0, 0.08);
}

.faq-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Blog Card Grid - 3x2 Layout */
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .blog-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
}

.blog-card {
    background: rgba(26, 26, 26, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--accent);
}

.blog-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #FF9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.blog-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.blog-card:hover p {
    color: #fff;
}

/* Blog Image Card */
.blog-image-card {
    background: rgba(115, 96, 15, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 200px;
}

.blog-image-card:hover {
    background: rgba(115, 96, 15, 0.3);
    border: 2px solid #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.blog-card-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 1rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-image-card:hover .blog-card-image {
    transform: scale(1.05);
}

/* Coming Soon Blog Card */
.blog-coming-soon {
    opacity: 0.7;
    font-style: italic;
}

.coming-soon {
    cursor: not-allowed;
}

/* Legacy Blog Post Styles */
.blog-post {
    background: rgba(115, 96, 15, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    background: rgba(115, 96, 15, 0.3);
    border: 2px solid #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.blog-post h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.blog-post:hover h3 {
    color: #FF9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.blog-post p {
    font-size: 1.3rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.blog-post:hover p {
    color: #fff;
}

/* Testimonials */

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

.testimonial {
    background: linear-gradient(135deg, #4a3c0a, #2a2407);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial cite small {
    font-size: 1.15rem;
    color: #ccc;
    font-weight: normal;
}

/* Booking Form */
.book {
    padding-top: 1rem;
}

.discount-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent));
    color: black;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.discount-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.coupon-code {
    font-size: 1.4rem;
    font-weight: 600;
}

.code {
    background: black;
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1.6rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background: rgba(255, 215, 0, 0.05);
    color: var(--light-text);
    font-size: 1rem;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999;
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--accent);
}

/* Calculator Buttons */
.calc-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.calc-btn {
    background: rgba(255, 215, 0, 0.1);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Contact */
.contact {
    text-align: center;
    padding: 2.5rem 0;
}

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

.contact-card {
    background: rgba(26, 26, 26, 0.95);
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,215,0,0.4);
    border-color: var(--accent);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.address-line {
    font-size: 1.6rem;
    color: #f5f5f5;
    margin: 0.5rem 0;
    font-weight: 600;
}

.address-note {
    font-size: 1rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.phone-number {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: bold;
    margin: 1rem 0;
    letter-spacing: 3px;
}

.phone-ext {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.emergency-banner {
    background: linear-gradient(90deg, #ff0000, #ff6b6b, #ff0000);
    background-size: 200% 100%;
    animation: emergency-slide 2s linear infinite;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

@keyframes emergency-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.blink {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    animation: blink 1s linear infinite;
    margin-bottom: 0.5rem;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.emergency-banner p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.email-address {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
    margin: 1rem 0;
    font-family: monospace;
}

.email-note {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

/* Social Section */
.social-section {
    margin-top: 4rem;
    padding: 3rem 0;
    position: relative;
}

.social-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin-bottom: 3rem;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.social-content {
    text-align: center;
}

.social-challenge {
    font-size: 2rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.social-response {
    font-size: 4rem;
    color: var(--secondary-color);
    font-weight: 900;
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
    animation: wrong-pulse 2s ease-in-out infinite;
}

@keyframes wrong-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.social-invite {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin: 2rem 0;
}

.twitter-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent));
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.twitter-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,215,0,0.5);
    background: linear-gradient(135deg, var(--accent), var(--secondary-color));
}

.twitter-icon {
    font-size: 2rem;
    font-weight: 900;
}

.twitter-handle {
    font-size: 1.6rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #73600f, #4a3c0a);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    transition: transform 0.5s ease;
    z-index: 10000;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 60px rgba(255,215,0,0.2);
    max-width: 600px;
    width: 90%;
}

.cookie-popup.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    text-align: center;
}

.cookie-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cookie-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.cookie-content .cookie-legal {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
}

.cookie-accept {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.cookie-accept:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,152,0,0.4);
}

.cookie-reject {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cookie-reject:hover {
    background: rgba(255,215,0,0.1);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}

/* Cookie Message Response */
.cookie-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, var(--primary-color), #4a3c0a);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 100px rgba(255,215,0,0.4);
    z-index: 10001;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transition: transform 0.5s ease;
}

.cookie-message.show {
    transform: translate(-50%, -50%) scale(1);
}

.cookie-message p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-with-image {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .section-image-wrapper {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .section-side-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }
    
    /* Services, FAQ, Blog, and Understanding mobile layout */
    .services-card-grid,
    .faq-card-grid,
    .blog-card-grid,
    .understanding-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image-card,
    .faq-image-card,
    .blog-image-card,
    .understanding-image-card {
        order: -1; /* Put image card at top on mobile */
        width: 100%;
        max-width: 100%;
    }
    
    .service-card-image,
    .faq-card-image,
    .blog-card-image,
    .understanding-card-image {
        max-width: 250px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-left {
        flex: 1 1 auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-right {
        text-align: center;
        padding-left: 0;
    }
    
    .hero-logo {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .price-banner {
        font-size: 2rem;
    }
    
    .services-grid,
    .faq-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info p {
        font-size: 1.8rem;
    }
    
    .contact-info .address {
        font-size: 2rem;
    }
    
    .contact-info .phone {
        font-size: 2.2rem;
    }
    
    .contact-info .email {
        font-size: 2rem;
    }
    
    .contact-info .hours {
        font-size: 1.8rem;
    }
    
    .social p {
        font-size: 1.8rem;
    }
    
    .social a {
        font-size: 2rem;
    }
}