/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #0F1C30;
    --pearl-white: #F7F8FA;
    --copper-glow: #B87333;
    --verdant-olive: #718D4A;
    --fog-grey: #C4C8CC;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-small: 0 2px 8px rgba(15, 28, 48, 0.08);
    --shadow-medium: 0 4px 16px rgba(15, 28, 48, 0.12);
    --shadow-large: 0 8px 32px rgba(15, 28, 48, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-navy);
    background: var(--pearl-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Header & Navigation
   =================================== */
.primary-header {
    background: var(--pearl-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-small);
    border-bottom: 1px solid rgba(196, 200, 204, 0.3);
}

.navigation-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-navy);
}

.brand-logo svg {
    flex-shrink: 0;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--deep-navy);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--deep-navy);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper-glow);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active-link::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: var(--copper-glow);
}

/* ===================================
   Hero Section
   =================================== */
.hero-banner {
    padding: 100px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/clarityfinance.jpg) no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-banner .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.hero-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--copper-glow);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
    transition: var(--transition-smooth);
}

.primary-button img {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.primary-button:hover {
    background: #a56429;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.secondary-button {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--deep-navy);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--deep-navy);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.secondary-button:hover {
    background: var(--deep-navy);
    color: white;
}

.hero-visual {
    position: relative;
    height: 450px;
}

.floating-card-element {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    animation: float 6s ease-in-out infinite;
}

.card-element-one {
    top: 20px;
    left: 40px;
    animation-delay: 0s;
}

.card-element-two {
    top: 180px;
    right: 60px;
    animation-delay: 2s;
}

.card-element-three {
    bottom: 40px;
    left: 80px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.stat-indicator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--copper-glow);
}

.stat-label {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.6);
}

/* ===================================
   Featured Articles Section
   =================================== */
.featured-articles-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(15, 28, 48, 0.6);
}

/* Articles Auto-Scroll Gallery */
.articles-scroll-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.articles-scroll-wrapper::before,
.articles-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.articles-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--pearl-white), transparent);
}

.articles-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--pearl-white), transparent);
}

.articles-grid {
    display: flex;
    gap: 32px;
    animation: scrollArticles 30s linear infinite;
    width: max-content;
}

.articles-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollArticles {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.featured-large {
    min-width: 500px;
    max-width: 500px;
}

.featured-large .article-media {
    height: 300px;
}

.article-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .placeholder-image {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--copper-glow);
}

.article-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.5);
    margin-bottom: 12px;
}

.article-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-large .article-title {
    font-size: 32px;
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(15, 28, 48, 0.7);
    margin-bottom: 20px;
    flex: 1;
}

.read-more-link {
    color: var(--copper-glow);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.read-more-link:hover {
    color: #a56429;
    gap: 8px;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2d4a 100%);
}

.newsletter-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(184, 115, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon img {
    filter: brightness(0) saturate(100%) invert(65%) sepia(30%) saturate(500%) hue-rotate(350deg);
}

.newsletter-content {
    text-align: center;
    margin-bottom: 40px;
}

.newsletter-heading {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.newsletter-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 220px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--copper-glow);
    background: rgba(255, 255, 255, 0.15);
}

.form-input.input-error {
    border-color: #ff6b6b;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px;
    background: var(--pearl-white);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(15, 28, 48, 0.7);
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--deep-navy);
    color: white;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--copper-glow);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--copper-glow);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact a:hover {
    color: var(--copper-glow);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: white;
    box-shadow: 0 8px 32px rgba(15, 28, 48, 0.2);
    border: 2px solid var(--copper-glow);
    border-radius: 16px;
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(500px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show-banner {
    opacity: 1;
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    color: var(--deep-navy);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--copper-glow);
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-accept-btn {
    padding: 12px 24px;
    background: var(--copper-glow);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    width: 100%;
    border: none;
    cursor: pointer;
}

.cookie-accept-btn:hover {
    background: #a56429;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--pearl-white) 0%, #e8edf2 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--pearl-white);
    margin-bottom: 16px;
}

.page-description {
    font-size: 18px;
    color: rgba(190, 191, 192, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.info-block {
    margin-bottom: 32px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--copper-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 16px;
    color: var(--deep-navy);
    line-height: 1.6;
}

.info-value a {
    color: var(--deep-navy);
}

.info-value a:hover {
    color: var(--copper-glow);
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.contact-form-box {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--fog-grey);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--deep-navy);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--copper-glow);
}

.form-control.input-error {
    border-color: #ff6b6b;
}

.error-message {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.error-message.show-error {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--copper-glow);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-button:hover {
    background: #a56429;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: var(--fog-grey);
    cursor: not-allowed;
    transform: none;
}

/* ===================================
   Thank You Page
   =================================== */
.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thankyou-box {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-large);
    border: 3px solid var(--verdant-olive);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--verdant-olive), var(--copper-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(113, 141, 74, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(113, 141, 74, 0);
    }
}

.success-icon img {
    width: 56px;
    height: 56px;
}

.thankyou-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.thankyou-message {
    font-size: 18px;
    color: rgba(15, 28, 48, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===================================
   Content Pages (Guides, Deep Dive, Reports)
   =================================== */
.content-page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2d4a 100%);
    color: white;
    text-align: center;
}

.content-page-hero .page-title {
    color: white;
}

.content-page-hero .page-description {
    color: rgba(255, 255, 255, 0.8);
}

.article-list-section {
    padding: 80px 0;
}

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.article-list-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.article-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

/* ===================================
   Legal Pages (Privacy, Terms, Cookies)
   =================================== */
.legal-page-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 40px;
    border-top: 2px solid var(--fog-grey);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--copper-glow);
    margin-top: 32px;
    margin-bottom: 16px;
    padding-left: 20px;
    border-left: 4px solid var(--copper-glow);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(15, 28, 48, 0.8);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
    background: var(--pearl-white);
    padding: 20px 20px 20px 52px;
    border-radius: 8px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(15, 28, 48, 0.8);
    margin-bottom: 12px;
}

.legal-content li:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.legal-content a {
    color: var(--copper-glow);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.5);
    margin-bottom: 32px;
    font-style: italic;
    padding: 12px 20px;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 8px;
    display: inline-block;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .navigation-container {
        padding: 16px 20px;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(247, 248, 250, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-smooth);
        align-items: center;
        overflow-y: auto;
        text-align: center;
    }
    
    .nav-menu.menu-active {
        left: 0;
    }
    
    .hero-banner .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-heading {
        font-size: 40px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .articles-grid {
        animation-duration: 25s;
    }
    
    .article-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .featured-large {
        min-width: 400px;
        max-width: 400px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .newsletter-container {
        padding: 40px 32px;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .form-input {
        min-width: 100%;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .article-list-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .legal-content {
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .newsletter-heading {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 32px 24px;
    }
    
    .thankyou-box {
        padding: 40px 24px;
    }
    
    .thankyou-title {
        font-size: 32px;
    }
    
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .legal-content {
        padding: 40px 24px;
    }
}

/* ===================================
   NEW SECTIONS - Index Page Redesign
   =================================== */

/* Hero Badge & Trust Indicators */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(113, 141, 74, 0.15);
    color: var(--verdant-olive);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge img {
    width: 18px;
    height: 18px;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--fog-grey);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.trust-item strong {
    color: var(--deep-navy);
    font-weight: 700;
}

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper-glow);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag img {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(184, 115, 51, 0.1) 100%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(184, 115, 51, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(30%) saturate(500%) hue-rotate(350deg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(15, 28, 48, 0.6);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--pearl-white);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--copper-glow);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(113, 141, 74, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--copper-glow);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.service-link img {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--verdant-olive);
}

.service-link:hover img {
    transform: translateX(4px);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--fog-grey);
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(15, 28, 48, 0.9), transparent);
    color: white;
}

.carousel-caption h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.carousel-caption p {
    font-size: 15px;
    opacity: 0.9;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    pointer-events: auto;
    box-shadow: var(--shadow-medium);
}

.carousel-btn:hover {
    background: var(--copper-glow);
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--deep-navy);
    stroke-width: 2;
    fill: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--fog-grey);
    border: 2px solid var(--deep-navy);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--copper-glow);
    border-color: var(--copper-glow);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--pearl-white);
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: var(--fog-grey);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border: 4px solid var(--copper-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--copper-glow);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background: var(--copper-glow);
    color: white;
    transform: scale(1.1);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(113, 141, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 24px;
    height: 24px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonials-header .section-title {
    color: white;
}

.testimonials-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--copper-glow);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper-glow), var(--verdant-olive));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Benefits Section Enhanced */
.benefits-section-enhanced {
    padding: 100px 0;
    background: var(--pearl-white);
}

.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card-enhanced {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-small);
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.benefit-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon-enhanced {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(113, 141, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-enhanced img {
    width: 28px;
    height: 28px;
}

.benefit-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--verdant-olive) 0%, #5a7a3d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--verdant-olive);
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.cta-button-primary:hover {
    background: var(--copper-glow);
    color: white;
    transform: translateY(-3px);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Article Images */
.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

/* ===================================
   New Sections Responsive
   =================================== */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-trust-indicators {
        flex-wrap: wrap;
    }
    
    .carousel-slide img {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .benefit-card-enhanced {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 20px;
    }
}

/* ===================================
   Additional Styles for Index Page
   =================================== */

/* Stats Box (alternative layout) */
.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat-box-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(184, 115, 51, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(30%) saturate(500%) hue-rotate(350deg);
}

.stat-box-content {
    display: flex;
    flex-direction: column;
}

.stat-box-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.stat-box-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Carousel Slide Overlay */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(15, 28, 48, 0.9), transparent);
    color: white;
}

.slide-overlay h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slide-overlay p {
    font-size: 15px;
    opacity: 0.9;
}

/* Testimonial Enhancements */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating span {
    color: var(--copper-glow);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
}

.author-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper-glow), var(--verdant-olive));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Section Header Adjustments */
.testimonials-section .section-header .section-title,
.testimonials-section .section-header .section-tag {
    color: white;
}

.testimonials-section .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--copper-glow);
}

/* CTA Section Enhancements */
.cta-heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 24px 0 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.secondary-button.light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.secondary-button.light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Article Media */
.article-media {
    position: relative;
    overflow: hidden;
}

.article-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-media img {
    transform: scale(1.05);
}

/* Process Step Content */
.step-content {
    text-align: left;
    padding: 0 16px;
}

/* Responsive Additions */
@media (max-width: 968px) {
    .stat-box {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-box-number {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .cta-heading {
        font-size: 28px;
    }
    
    .stat-box-number {
        font-size: 24px;
    }
    
    .slide-overlay h4 {
        font-size: 18px;
    }
    
    .step-content {
        text-align: center;
    }
}

/* ===================================
   Guides Page Styles
   =================================== */

/* Guides Hero */
.guides-hero {
    padding-bottom: 80px;
}

.guides-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    margin-bottom: 20px;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.hero-stat img {
    opacity: 0.8;
}

.hero-stat strong {
    color: var(--copper-glow);
}

/* Guide Categories */
.guide-categories-section {
    padding: 100px 0;
    background: var(--pearl-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--copper-glow);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1), rgba(113, 141, 74, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.category-count {
    display: inline-block;
    background: var(--fog-grey);
    color: var(--deep-navy);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Featured Guides */
.featured-guides-section {
    padding: 100px 0;
    background: var(--fog-grey);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.guide-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.guide-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.guide-badge.beginner {
    background: var(--verdant-olive);
}

.guide-badge.intermediate {
    background: var(--copper-glow);
}

.guide-badge.advanced {
    background: var(--deep-navy);
}

.guide-time {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--deep-navy);
}

.guide-content {
    padding: 28px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.guide-category {
    color: var(--copper-glow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-date {
    color: rgba(15, 28, 48, 0.5);
    font-size: 13px;
}

.guide-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.3;
    margin-bottom: 14px;
}

.guide-excerpt {
    font-size: 15px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.guide-highlights {
    list-style: none;
    margin-bottom: 24px;
}

.guide-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(15, 28, 48, 0.8);
    padding: 6px 0;
}

.guide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--copper-glow);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.guide-button:hover {
    background: #a56429;
    transform: translateY(-2px);
}

/* Learning Path */
.learning-path-section {
    padding: 100px 0;
    background: var(--deep-navy);
}

.learning-path-section .section-header .section-title {
    color: white;
}

.learning-path-section .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.learning-path-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--copper-glow);
}

.learning-path-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.learning-path-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.path-step {
    text-align: center;
    position: relative;
}

.step-marker {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--copper-glow);
}

.step-num {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--copper-glow);
    position: absolute;
    top: -10px;
    background: var(--deep-navy);
    padding: 4px 12px;
    border-radius: 12px;
    border: 2px solid var(--copper-glow);
}

.step-marker img {
    filter: brightness(0) saturate(100%) invert(65%) sepia(30%) saturate(500%) hue-rotate(350deg);
}

.path-step .step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    
    margin-bottom: 12px;
}

.path-step .step-content p {
    font-size: 14px;
  
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--copper-glow);
    font-weight: 500;
}

.step-duration img {
    filter: brightness(0) saturate(100%) invert(65%) sepia(30%) saturate(500%) hue-rotate(350deg);
}

/* Quick Tips */
.quick-tips-section {
    padding: 100px 0;
    background: var(--pearl-white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tip-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.tip-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(113, 141, 74, 0.15), rgba(184, 115, 51, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon img {
    display: block;
    margin: auto;
}

.tip-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 14px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--fog-grey);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-small);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-question img {
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.4;
}

.faq-answer {
    font-size: 15px;
    color: rgba(15, 28, 48, 0.7);
    line-height: 1.7;
    padding-left: 40px;
}

/* Guide Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 28, 48, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.guide-modal {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: none;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.guide-modal.active {
    display: flex;
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--deep-navy);
    color: white;
}

.modal-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-nav-btn:hover {
    background: var(--copper-glow);
}

.modal-nav-btn img {
    filter: brightness(0) invert(1);
}

.modal-counter {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: white;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-content {
    overflow-y: auto;
    flex: 1;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-body {
    padding: 32px;
}

.modal-category {
    display: inline-block;
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper-glow);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.modal-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(15, 28, 48, 0.6);
}

.modal-text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-top: 32px;
    margin-bottom: 16px;
}

.modal-text h3:first-child {
    margin-top: 0;
}

.modal-text p {
    font-size: 16px;
    color: rgba(15, 28, 48, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.modal-text ul {
    list-style: none;
    margin: 24px 0;
    padding: 24px;
    background: var(--pearl-white);
    border-radius: 12px;
    border-left: 4px solid var(--copper-glow);
}

.modal-text ul li {
    font-size: 15px;
    color: rgba(15, 28, 48, 0.8);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.modal-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--copper-glow);
    border-radius: 50%;
}

/* Guides Page Responsive */
@media (max-width: 968px) {
    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-path-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .learning-path-timeline::before {
        display: none;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-path-timeline {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body h2 {
        font-size: 24px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .guide-image {
        height: 200px;
    }
}

/* ===================================
   Deep Dive Page Styles
   =================================== */

/* Deep Dive Hero */
.deep-dive-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1a2d47 100%);
    padding: 100px 0 80px;
    color: var(--pearl-white);
}

.deep-dive-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.deep-dive-hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.deep-dive-hero-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 48px;
}

.deep-dive-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.deep-dive-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.deep-dive-stat .stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.deep-dive-stat .stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--copper-glow);
}

.deep-dive-stat .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Research Categories */
.research-categories {
    padding: 80px 0;
    background: var(--pearl-white);
}

.research-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.research-category-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.research-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--copper-glow);
}

.research-category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.research-category-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.research-category-card p {
    font-size: 14px;
    color: var(--fog-grey);
    line-height: 1.5;
}

/* Featured Analyses */
.featured-analyses {
    padding: 80px 0;
    background: #f0f2f4;
}

.analyses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.analysis-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.analysis-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
}

.analysis-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.analysis-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.analysis-card:hover .analysis-card-image img {
    transform: scale(1.05);
}

.analysis-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--copper-glow);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-card-content {
    padding: 24px;
}

.analysis-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.analysis-category,
.analysis-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fog-grey);
}

.meta-icon {
    width: 16px;
    height: 16px;
}

.analysis-card-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.analysis-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.analysis-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fog-grey);
}

.analysis-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--deep-navy);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.analysis-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.analysis-btn:hover {
    background: var(--copper-glow);
}

/* Research Methodology */
.research-methodology {
    padding: 80px 0;
    background: var(--pearl-white);
}

.methodology-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper-glow), var(--verdant-olive), var(--copper-glow), var(--verdant-olive));
}

.methodology-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--copper-glow);
    opacity: 0.3;
    margin-bottom: 8px;
}

.step-content {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.3);
    position: relative;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-icon img {
    width: 32px;
    height: 32px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Market Overview */
.market-overview {
    padding: 80px 0;
    background: var(--deep-navy);
    color: var(--pearl-white);
}

.market-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.market-overview-content .section-badge {
    margin-bottom: 24px;
}

.market-overview-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.market-overview-content > p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.market-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.market-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.market-feature img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.market-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.market-feature p {
    font-size: 14px;
    opacity: 0.8;
}

.market-overview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.market-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quick Insights */
.quick-insights {
    padding: 80px 0;
    background: var(--pearl-white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.insight-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.3);
    transition: var(--transition-smooth);
    position: relative;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.insight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.insight-icon img {
    width: 100%;
    height: 100%;
}

.insight-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-navy);
}

.insight-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.insight-tag {
    display: inline-block;
    background: var(--deep-navy);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Deep Dive CTA */
.deep-dive-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f2f4 0%, var(--pearl-white) 100%);
}

.deep-dive-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.deep-dive-cta .cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.deep-dive-cta h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--deep-navy);
}

.deep-dive-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--fog-grey);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.cta-form input[type="email"]:focus {
    outline: none;
    border-color: var(--copper-glow);
}

.cta-note {
    font-size: 14px;
    color: var(--fog-grey);
}

/* Form Success Message */
.form-success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(113, 141, 74, 0.15);
    border: 1px solid var(--verdant-olive);
    color: var(--verdant-olive);
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

.form-success-message.show {
    display: flex;
}

.form-success-message img {
    flex-shrink: 0;
}

/* Analysis Modals */
.analysis-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.analysis-modal.active {
    opacity: 1;
    visibility: visible;
}

.analysis-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 48, 0.85);
    z-index: -1;
}

.analysis-modal .modal-container {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.analysis-modal.active .modal-container {
    transform: translateY(0);
}

.analysis-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-medium);
}

.analysis-modal .modal-close img {
    width: 20px;
    height: 20px;
}

.analysis-modal .modal-close:hover {
    background: var(--pearl-white);
}

.analysis-modal .modal-header {
    height: 300px;
    overflow: hidden;
}

.analysis-modal .modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.analysis-modal .modal-body {
    padding: 40px;
}

.analysis-modal .modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.analysis-modal .modal-category {
    background: var(--copper-glow);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.analysis-modal .modal-date,
.analysis-modal .modal-read-time {
    font-size: 14px;
    color: var(--fog-grey);
}

.analysis-modal .modal-body h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--deep-navy);
}

.analysis-modal .modal-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--deep-navy);
}

.analysis-modal .modal-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--deep-navy);
}

.analysis-modal .modal-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.analysis-modal .modal-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.analysis-modal .modal-body li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.analysis-modal .modal-body li strong {
    color: var(--deep-navy);
}

.modal-key-points {
    background: var(--pearl-white);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    border-left: 4px solid var(--copper-glow);
}

.modal-key-points h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0 0 16px !important;
}

.modal-key-points ul {
    margin: 0;
    padding-left: 20px;
}

.modal-key-points li {
    color: var(--deep-navy);
    font-weight: 500;
}

.modal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: var(--pearl-white);
    border-top: 1px solid rgba(196, 200, 204, 0.3);
}

.modal-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--deep-navy);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.modal-nav-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.modal-nav-btn:hover {
    background: var(--copper-glow);
}

.modal-counter {
    font-size: 14px;
    color: var(--fog-grey);
    font-weight: 500;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Deep Dive Responsive */
@media (max-width: 1024px) {
    .deep-dive-hero-title {
        font-size: 42px;
    }
    
    .research-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analyses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-timeline::before {
        display: none;
    }
    
    .market-overview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .market-overview-image {
        order: -1;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .deep-dive-hero {
        padding: 80px 0 60px;
    }
    
    .deep-dive-hero-title {
        font-size: 32px;
    }
    
    .deep-dive-stats {
        gap: 32px;
    }
    
    .deep-dive-stat .stat-number {
        font-size: 28px;
    }
    
    .research-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .analyses-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-timeline {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .market-overview-content h2 {
        font-size: 32px;
    }
    
    .deep-dive-cta h2 {
        font-size: 28px;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .analysis-modal .modal-body {
        padding: 24px;
    }
    
    .analysis-modal .modal-body h2 {
        font-size: 24px;
    }
    
    .modal-navigation {
        padding: 20px 24px;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   Reports Page Styles
   =================================== */

/* Reports Hero */
.reports-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(15, 28, 48, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.reports-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.reports-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.reports-hero .page-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--pearl-white);
    margin-bottom: 20px;
}

.reports-hero .page-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(247, 248, 250, 0.8);
    max-width: 700px;
    margin: 0 auto 48px;
}

.reports-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.report-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.report-stat img {
    opacity: 0.8;
}

.report-stat .stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--copper-glow);
}

.report-stat .stat-text {
    font-size: 14px;
    color: rgba(247, 248, 250, 0.7);
}

/* Report Categories */
.report-categories {
    padding: 80px 0;
    background: var(--pearl-white);
}

.report-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.report-category-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    border: 1px solid rgba(196, 200, 204, 0.2);
}

.report-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.category-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pearl-white);
    border-radius: 16px;
}

.report-category-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.report-category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper-glow);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* Featured Reports */
.featured-reports {
    padding: 80px 0;
    background: rgba(15, 28, 48, 0.02);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.report-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    border: 1px solid rgba(196, 200, 204, 0.2);
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
}

.report-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.report-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.report-card:hover .report-card-image img {
    transform: scale(1.05);
}

.report-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--deep-navy);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-card-content {
    padding: 24px;
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.report-category,
.report-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.report-category img,
.report-date img {
    opacity: 0.6;
}

.report-card-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.4;
    margin-bottom: 12px;
}

.report-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(196, 200, 204, 0.3);
}

.report-pages {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.report-pages img {
    opacity: 0.5;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--copper-glow);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
}

.report-btn:hover {
    background: var(--deep-navy);
}

/* Research Highlights */
.research-highlights {
    padding: 80px 0;
    background: var(--pearl-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.highlight-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.2);
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pearl-white);
    border-radius: 12px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.highlight-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(113, 141, 74, 0.1);
    color: var(--verdant-olive);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* Report Features */
.report-features {
    padding: 100px 0;
    background: var(--deep-navy);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-content {
    color: var(--pearl-white);
}

.features-content .section-tag {
    background: rgba(247, 248, 250, 0.1);
}

.features-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: var(--pearl-white);
}

.features-content > p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(247, 248, 250, 0.8);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item img {
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--pearl-white);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 14px;
    color: rgba(247, 248, 250, 0.7);
    line-height: 1.6;
}

.features-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Report Archive */
.report-archive {
    padding: 80px 0;
    background: var(--pearl-white);
}

.archive-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.archive-stat {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.2);
}

.archive-stat img {
    margin: 0 auto 16px;
}

.archive-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.archive-label {
    font-size: 14px;
    color: #666;
}

/* Reports CTA */
.reports-cta {
    padding: 80px 0;
    background: rgba(15, 28, 48, 0.02);
}

.reports-cta .cta-box {
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(15, 28, 48, 0.95) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reports-cta .cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.reports-cta .cta-icon {
    margin: 0 auto 24px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.reports-cta h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--pearl-white);
    margin-bottom: 16px;
}

.reports-cta p {
    font-size: 17px;
    color: rgba(247, 248, 250, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.reports-cta .cta-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.reports-cta .cta-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background: white;
}

.reports-cta .cta-form input::placeholder {
    color: #888;
}

.reports-cta .cta-note {
    display: block;
    font-size: 13px;
    color: rgba(247, 248, 250, 0.6);
}

/* Report Modals */
.report-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.report-modal.active {
    display: flex;
}

.report-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 48, 0.85);
    backdrop-filter: blur(4px);
}

.report-modal .modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    display: flex;
    flex-direction: column;
}

.report-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-small);
    z-index: 10;
}

.report-modal .modal-close:hover {
    background: var(--pearl-white);
}

.report-modal .modal-header {
    height: 250px;
    overflow: hidden;
}

.report-modal .modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-modal .modal-body {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.report-modal .modal-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.report-modal .modal-meta span {
    padding: 6px 14px;
    background: var(--pearl-white);
    border-radius: 6px;
    font-size: 13px;
    color: #666;
}

.report-modal .modal-meta .modal-category {
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper-glow);
    font-weight: 600;
}

.report-modal .modal-body h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 24px;
    line-height: 1.3;
}

.report-modal .modal-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 28px 0 16px;
}

.report-modal .modal-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--deep-navy);
}

.report-modal .modal-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.report-modal .modal-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.report-modal .modal-body li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.report-modal .modal-body li strong {
    color: var(--deep-navy);
}

/* Reports Responsive */
@media (max-width: 1024px) {
    .reports-hero .page-title {
        font-size: 42px;
    }
    
    .report-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .features-image {
        order: -1;
    }
    
    .archive-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reports-hero {
        padding: 80px 0 60px;
    }
    
    .reports-hero .page-title {
        font-size: 32px;
    }
    
    .reports-stats {
        gap: 32px;
    }
    
    .report-stat .stat-value {
        font-size: 28px;
    }
    
    .report-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .features-content h2 {
        font-size: 32px;
    }
    
    .archive-stats {
        grid-template-columns: 1fr;
    }
    
    .reports-cta .cta-box {
        padding: 40px 24px;
    }
    
    .reports-cta h2 {
        font-size: 28px;
    }
    
    .reports-cta .cta-form {
        flex-direction: column;
    }
    
    .report-modal .modal-body {
        padding: 24px;
    }
    
    .report-modal .modal-body h2 {
        font-size: 22px;
    }
    
    .report-modal .modal-header {
        height: 180px;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Hero */
.contact-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(15, 28, 48, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--pearl-white);
    margin: 20px 0;
}

.contact-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(247, 248, 250, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--pearl-white);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-method-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.2);
    transition: var(--transition-smooth);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.method-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pearl-white);
    border-radius: 16px;
}

.contact-method-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.contact-method-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--copper-glow);
}

.method-link:hover {
    color: var(--deep-navy);
}

.method-address,
.method-note {
    font-size: 14px;
    color: var(--deep-navy);
    font-weight: 500;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: rgba(15, 28, 48, 0.02);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

/* Minimalist Contact Form Box */
.contact-form-box {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.15);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-navy);
    margin: 0;
}

.form-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-navy);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(196, 200, 204, 0.5);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: var(--pearl-white);
    color: var(--deep-navy);
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--copper-glow);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--deep-navy);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-submit-btn:hover {
    background: var(--copper-glow);
}

.contact-form-box .form-success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: rgba(113, 141, 74, 0.1);
    border-radius: 12px;
    margin-top: 24px;
}

.contact-form-box .form-success-message.visible {
    display: flex;
}

.contact-form-box .form-success-message span {
    font-size: 15px;
    color: var(--verdant-olive);
    font-weight: 500;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-map-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.15);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(196, 200, 204, 0.2);
}

.map-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0;
}

.contact-map-box .map-container {
    height: 200px;
}

.contact-map-box .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-address {
    padding: 16px 24px;
    background: var(--pearl-white);
}

.map-address p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-quick-box {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.15);
}

.contact-quick-box h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 20px;
}

.quick-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list li:last-child {
    margin-bottom: 0;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--pearl-white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-navy);
    transition: var(--transition-smooth);
}

.quick-links-list a:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--copper-glow);
}

/* Inquiry Types */
.inquiry-types {
    padding: 80px 0;
    background: var(--pearl-white);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.inquiry-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(196, 200, 204, 0.2);
    transition: var(--transition-smooth);
}

.inquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.inquiry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pearl-white);
    border-radius: 16px;
}

.inquiry-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.inquiry-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.inquiry-email {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--copper-glow);
}

/* Response Info */
.response-info {
    padding: 80px 0;
    background: rgba(15, 28, 48, 0.02);
}

.response-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--deep-navy);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.response-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.response-content {
    position: relative;
    z-index: 1;
}

.response-content img {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.response-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--pearl-white);
    margin-bottom: 16px;
}

.response-content p {
    font-size: 17px;
    color: rgba(247, 248, 250, 0.8);
    line-height: 1.7;
}

.response-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.response-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(247, 248, 250, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(247, 248, 250, 0.1);
}

.response-feature img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.response-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--pearl-white);
    margin-bottom: 4px;
}

.response-feature p {
    font-size: 14px;
    color: rgba(247, 248, 250, 0.7);
    margin: 0;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .inquiry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .response-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 50px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 32px 24px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
    
    .response-box {
        padding: 40px 24px;
    }
    
    .response-content h2 {
        font-size: 28px;
    }
}
