/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
   :root {
    /* Color Palette */
    --clr-primary-dark: #072619;     /* Deep Green */
    --clr-primary-darker: #041810;
    --clr-accent: #B24D38;           /* Terracotta / Burnt Orange */
    --clr-accent-hover: #983d2a;
    --clr-bg-light: #F7F5F0;         /* Cream / Beige */
    --clr-bg-white: #FFFFFF;
    
    /* Text Colors */
    --clr-text-main: #333333;
    --clr-text-muted: #666666;
    --clr-text-light: #F7F5F0;
    --clr-text-light-muted: #cccccc;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Border Radius */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --section-pad-y: 80px;
    --container-max: 1280px;
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.text-light { color: var(--clr-text-light) !important; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--clr-primary-dark);
}

.section-over-title {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--clr-accent);
    margin: 0 auto 32px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-text-light);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-primary-dark);
    color: var(--clr-primary-dark);
}

.btn-outline:hover {
    background-color: var(--clr-primary-dark);
    color: var(--clr-text-light);
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--clr-text-light);
}

.btn-outline-light:hover {
    border-color: var(--clr-text-light);
    background-color: rgba(255,255,255,0.1);
}


/* ==========================================================================
   LAYOUT
   ========================================================================== */
.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    overflow-x: hidden;
}

/* ==========================================================================
   NEW HERO SECTION
   ========================================================================== */
.new-hero {
    position: relative;
    height: 90vh; /* Fixed height for exact clipping */
    background-color: #eee7dc; /* Cream base */
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.top-nav-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
    gap: 40px;
}

.top-nav-new ul {
    display: flex;
    gap: 32px;
}
.mobile-menu-toggle {
    display: none;
}
.top-nav-new a {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    font-weight: 400;
}
.top-nav-new a:hover {
    opacity: 0.7;
}
.btn-enquiry {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-full);
    color: var(--clr-text-light);
    font-weight: 500;
}
.btn-enquiry:hover {
    background-color: rgba(255,255,255,0.1);
}

.hero-content-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* Over green, under cream curve ideally, or let's keep it over everything */
    pointer-events: none;
}

.hero-text-new {
    pointer-events: auto;
    position: absolute;
    top: 45%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 50%;
}

.primary-heading-new {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    color: var(--clr-text-light);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 500;
}

.sub-text-new {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 80%;
}

.hero-text-new .btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}
.hero-text-new .btn-dark:hover {
    background-color: #333;
}

/* ==========================================================================
   FEATURED PROJECTS
   ========================================================================== */
.featured-projects {
    padding: var(--section-pad-y) 0;
    background-color: var(--clr-bg-light);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 8px 24px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-text-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background-color: var(--clr-bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-img-wrapper {
    height: 280px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-info {
    padding: 24px;
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.project-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.project-link {
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link:hover {
    color: var(--clr-accent-hover);
}

/* ==========================================================================
   PHILOSOPHY STRIP (Below Hero)
   ========================================================================== */
.philosophy-strip {
    background-color: #F7F5F0;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.strip-heading {
    font-size: 3rem;
    color: #7a2a19;
    margin-bottom: 8px;
    line-height: 1.1;
}

.strip-subheading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.strip-subheading .line {
    height: 1px;
    background-color: rgba(0,0,0,0.2);
    flex: 1;
    max-width: 60px;
}

.strip-features {
    display: flex;
    gap: 24px;
}

.strip-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
}

.strip-feat i {
    font-size: 1.8rem;
    color: var(--clr-text-main);
}

.philosophy-strip-image {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.strip-img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}
.strip-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip-accent-box {
    width: 150px;
    background-color: #b7412e;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--clr-text-light);
    text-align: center;
    position: relative;
}

.circle-diagram {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    position: relative;
}

.circle-diagram svg {
    position: relative;
    z-index: 2;
}

.circle-diagram::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #ffdd88;
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgba(255, 221, 136, 0.6);
    animation: warmBlink 1.5s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes warmBlink {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.strip-accent-box p {
    font-size: 0.9rem;
    line-height: 1.2;
    font-family: var(--font-heading);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: var(--section-pad-y) 0;
    background-color: var(--clr-bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: var(--clr-bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
}

.stars {
    color: #F59E0B; /* Gold for stars */
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-text-main);
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--clr-primary-dark);
    color: var(--clr-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-heading);
}

.client-name {
    margin-bottom: 2px;
    font-size: 1rem;
}

.client-location {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-us {
    padding: var(--section-pad-y) 0;
    background-color: var(--clr-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--clr-bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 2rem;
    color: var(--clr-accent);
}

.feature-text {
    font-weight: 600;
    font-size: 1.05rem;
}

/* ==========================================================================
   CONVERSION SECTION (Forms & Resources)
   ========================================================================== */
.conversion-section {
    padding: var(--section-pad-y) 0;
    background-color: var(--clr-bg-white);
}

.conversion-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 32px;
}

.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.resources-block, .location-block {
    background-color: var(--clr-bg-light);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
}

.resources-icons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

.resource-item i {
    font-size: 1.5rem;
    color: var(--clr-primary-dark);
}

/* Form Block */
.form-block {
    background-color: var(--clr-accent);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    color: var(--clr-text-light);
}

.form-block .section-over-title {
    color: rgba(255,255,255,0.7);
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.consultation-form input, 
.consultation-form select, 
.consultation-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: rgba(255,255,255,0.9);
}

.consultation-form input:focus, 
.consultation-form select:focus, 
.consultation-form textarea:focus {
    outline: 2px solid var(--clr-primary-dark);
}

.consultation-form textarea {
    margin-bottom: 24px;
    resize: vertical;
}

.form-block .btn-primary {
    background-color: var(--clr-primary-dark);
}

.form-block .btn-primary:hover {
    background-color: var(--clr-primary-darker);
}

.call-prompt {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.call-prompt strong {
    font-size: 1.1rem;
    color: var(--clr-text-light);
}
.call-prompt i {
    font-size: 1.2rem;
}

/* Location Block */
.address-card {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}
.address-card i {
    font-size: 1.4rem;
    color: var(--clr-accent);
    margin-top: 2px;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    height: 150px;
}
.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--clr-bg-white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    color: var(--clr-accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--clr-primary-dark);
    color: var(--clr-text-light);
    padding-top: var(--section-pad-y);
}

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

.brand-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 24px 0;
}

.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.social-icons a:hover {
    background-color: var(--clr-accent);
}

.footer-heading {
    color: var(--clr-text-light);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.links-col ul li {
    margin-bottom: 12px;
}
.links-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.links-col a:hover {
    color: var(--clr-accent);
}

.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.contact-col i {
    font-size: 1.2rem;
    color: var(--clr-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   IO BUTTON STYLE
   ========================================================================== */
.io-btn-download {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #cc0000 0%, #a30000 60%, #fff 65%, #fff 70%, #222 75%, #111 100%);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: transform 0.1s;
}

.io-btn-download:active {
  transform: scale(0.95);
}

.io-btn-download::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  width: 2px;
  height: 4px;
  background-color: white;
  border-radius: 1px;
}

.io-btn-download::after {
  content: '';
  position: absolute;
  bottom: 2.5px;
  left: 6px;
  width: 6px;
  height: 6px;
  border: 1.5px solid white;
  border-radius: 50%;
  box-sizing: border-box;
}

/* Red blinking light inside the button */
.io-btn-download.blinking {
  animation: ioBlink 0.3s ease-in-out 4; /* blink 4 times fast */
}

@keyframes ioBlink {
  0% { box-shadow: inset 0 0 0 rgba(255,0,0,0); background: radial-gradient(circle, #cc0000 0%, #a30000 60%, #fff 65%, #fff 70%, #222 75%, #111 100%); }
  50% { box-shadow: inset 0 0 8px rgba(255,0,0,1), 0 0 8px rgba(255,0,0,1); background: radial-gradient(circle, #ff3333 0%, #ff0000 60%, #fff 65%, #fff 70%, #222 75%, #111 100%); }
  100% { box-shadow: inset 0 0 0 rgba(255,0,0,0); background: radial-gradient(circle, #cc0000 0%, #a30000 60%, #fff 65%, #fff 70%, #222 75%, #111 100%); }
}

/* ==========================================================================
   MEDIA QUERIES (Responsive)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text-area {
        padding-right: 0;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .primary-headline {
        font-size: 3.5rem;
    }
    .sub-headline {
        margin: 0 auto 40px;
    }
    .hero-image-area {
        height: 50vh;
    }
    
    .projects-grid, .testimonials-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-section-wrapper {
        grid-template-columns: 1fr;
    }
    .philosophy-section, .process-section {
        padding: var(--section-pad-y) 5%;
        max-width: 100%;
        justify-content: flex-start;
    }
    
    .conversion-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* New Hero & Philosophy Strip */
    .hero-text-new {
        max-width: 80%;
    }
    .philosophy-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .primary-headline {
        font-size: 2.8rem;
    }
    .projects-grid, .testimonials-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .main-nav, .site-header .btn-outline {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .process-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* New Hero Section Mobile Fixes */
    .new-hero {
        height: 80vh;
    }
    .top-nav-new {
        padding: 20px 5%;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
    }
    .mobile-menu-toggle {
        display: block;
        font-size: 2rem;
        color: var(--clr-text-light);
        cursor: pointer;
    }
    .top-nav-new ul {
        display: none; 
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-top: 20px;
        background: rgba(0,0,0,0.8);
        border-radius: var(--radius-sm);
        margin-top: 10px;
        padding-bottom: 20px;
    }
    .top-nav-new ul.active {
        display: flex;
    }
    .top-nav-new .btn-enquiry {
        display: none;
    }
    
    .mobile-hide {
        display: none;
    }
    .hero-text-new {
        max-width: 100%;
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
        transform: none;
        text-align: center;
        padding: 18vh 20px 0 20px;
        box-sizing: border-box;
    }
    .primary-heading-new {
        font-family: var(--font-heading);
        font-size: 3.6rem;
        margin-bottom: 16px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    }
    .sub-text-new {
        font-size: 1rem;
        max-width: 100%;
        margin: 23px auto 24px auto;
        text-align: left;
    }
    .hero-text-new .btn-dark {
        position: absolute;
        bottom: 30px;
        left: 20px;
        z-index: 10;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 14px 24px;
        border-radius: var(--radius-full);
        background-color: var(--clr-accent);
        color: var(--clr-text-light);
        box-shadow: 0 6px 16px rgba(0,0,0,0.4);
        margin: 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Philosophy Strip Mobile Fixes */
    .philosophy-strip {
        padding: 50px 5%;
    }
    .strip-heading {
        font-size: 2.4rem;
        text-align: center;
    }
    .strip-subheading {
        justify-content: center;
    }
    .strip-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .strip-feat {
        width: calc(50% - 16px);
        flex-direction: column;
        text-align: center;
        background: #fff;
        padding: 16px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }
    .philosophy-strip-image {
        flex-direction: column;
    }
    .strip-accent-box {
        width: 100%;
        padding: 30px;
        flex-direction: row;
        gap: 20px;
        text-align: left;
    }
    .strip-accent-box .circle-diagram {
        margin-bottom: 0;
    }
    
    /* Other cleanups */
    .section-title {
        font-size: 2rem;
    }
    .resources-block, .form-block, .location-block {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   CUSTOM ANIMATIONS
   ========================================================================== */
@keyframes red-light-blink {
    0%, 100% { 
        stroke: #7a2a19; 
        opacity: 0.3; 
        filter: drop-shadow(0 0 0px rgba(255, 120, 100, 0)); 
    }
    50% { 
        stroke: #ff7864; /* light warm red */
        opacity: 1; 
        filter: drop-shadow(0 0 6px rgba(255, 120, 100, 0.8)); 
    }
}

.strip-accent-box .circle-diagram svg circle,
.strip-accent-box .circle-diagram svg line {
    animation: red-light-blink 1.5s infinite ease-in-out;
}
