@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Manrope:wght@300;400;500;600;700&family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

:root {
  --atc-brand-red: #e31d24;
  --atc-brand-blue: #0054a6;
  --atc-surface: #ffffff;
  --atc-surface-container: #f8f9fa;
  --atc-secondary: #585e73;
  --atc-on-surface: #191c1d;
  --atc-font-serif: 'Noto Serif', serif;
  --atc-font-body: 'Manrope', sans-serif;
  --atc-font-label: 'Inter', sans-serif;
}

/* Base resets within widgets */
.atc-widget-container {
    font-family: var(--atc-font-body);
    color: var(--atc-on-surface);
}
.atc-widget-container h1, .atc-widget-container h2, .atc-widget-container h3, 
.atc-widget-container h4, .atc-widget-container h5, .atc-widget-container h6,
.atc-font-serif {
    font-family: var(--atc-font-serif);
}

/* --- Navigation (matches code.html TopNavBar) --- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* The nav wraps the full viewport width */
.atc-topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3f4f6;
    /* Override any Elementor will-change/transform that breaks position:fixed */
    transform: none !important;
    will-change: auto !important;
}
/* Remove any Elementor section padding/margin around this widget */
.elementor-widget-atc_header_navigation,
.elementor-widget-atc_header_navigation .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* Inner container: flex row, 3 groups spaced apart */
.atc-topnav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

/* --- Brand group (logo + name) --- */
.atc-topnav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
}
.atc-topnav-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}
.atc-topnav-brand-name {
    font-size: 1.25rem;
    font-family: var(--atc-font-serif);
    font-weight: 700;
    color: var(--atc-brand-blue);
    letter-spacing: -0.05em;
    text-decoration: none;
    white-space: nowrap;
}

/* --- Nav links group --- */
.atc-topnav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .atc-topnav-links {
        display: flex;
    }
}
.atc-topnav-link {
    color: #475569;
    text-decoration: none;
    font-family: var(--atc-font-label);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    padding-bottom: 2px;
}
.atc-topnav-link:hover {
    color: var(--atc-brand-blue);
}
.atc-topnav-active {
    color: var(--atc-brand-blue);
    font-weight: 700;
    border-bottom: 2px solid var(--atc-brand-red);
}

/* --- Actions group (search / language / hamburger) --- */
.atc-topnav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--atc-brand-blue);
    flex-shrink: 0;
}
.atc-topnav-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--atc-brand-blue);
    transition: color 0.3s;
}
.atc-topnav-action-btn:hover {
    color: var(--atc-brand-red);
}
.atc-topnav-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--atc-brand-blue);
}
@media (min-width: 768px) {
    .atc-topnav-hamburger {
        display: none;
    }
}

/* Mobile: links shown when toggled */
@media (max-width: 767px) {
    .atc-topnav-links--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.97);
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid #f3f4f6;
        z-index: 9998;
    }
}

/* --- Prevent Horizontal Scroll from 100vw breakout --- */
body {
    overflow-x: hidden;
}

/* --- Hero Banner --- */
.atc-hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    visibility: hidden; /* Prevent flash before JS breakout */
}
.atc-hero.atc-ready {
    visibility: visible;
}
.atc-hero-bg {
    position: absolute !important;
    inset: 0 !important;
}
.atc-hero-bg img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    object-fit: cover !important;
    display: block !important;
}
.atc-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
.atc-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1920px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .atc-hero-content {
        padding: 0 6rem;
    }
}
.atc-hero-label {
    color: white;
    font-family: var(--atc-font-label);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--atc-brand-red);
    padding-left: 1rem;
}
.atc-hero-title {
    color: white;
    font-size: 3rem;
    font-family: var(--atc-font-serif);
    max-width: 56rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .atc-hero-title {
        font-size: 6rem;
    }
}
.atc-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.atc-btn-primary {
    background-color: var(--atc-brand-red);
    color: white;
    padding: 1.25rem 3rem;
    font-family: var(--atc-font-body);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s;
    text-decoration: none;
    display: inline-block;
}
.atc-btn-primary:hover {
    background-color: var(--atc-brand-blue);
}
.atc-btn-secondary {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    padding: 1.25rem 3rem;
    font-family: var(--atc-font-body);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.5s;
    text-decoration: none;
    display: inline-block;
}
.atc-btn-secondary:hover {
    background-color: white;
    color: black;
}

/* --- Section Global --- */
.atc-section {
    padding: 8rem 2rem;
    width: 100vw;
    visibility: hidden;
}
.atc-section.atc-ready {
    visibility: visible;
}
.atc-section-content-wrapper {
    max-width: 1920px;
    margin: 0 auto;
}
.atc-section-bg-white {
    background-color: #ffffff;
}
.atc-section-bg-gray {
    background-color: var(--atc-surface-container);
}
.atc-section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 2rem;
}
@media(min-width: 768px) {
    .atc-section-header {
        flex-direction: row;
        align-items: flex-end;
    }
}
.atc-section-title-wrap {
    max-width: 42rem;
}
.atc-section-title {
    font-size: 3rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    margin-bottom: 1.5rem;
}
.atc-section-divider {
    width: 5rem;
    height: 0.25rem;
    background-color: var(--atc-brand-red);
    margin-bottom: 1.5rem;
}
.atc-section-divider-center {
    margin: 0 auto 1.5rem auto;
}
.atc-section-desc {
    color: var(--atc-secondary);
    font-family: var(--atc-font-body);
    line-height: 1.625;
    font-size: 1.125rem;
}
.atc-link-action {
    color: var(--atc-brand-blue);
    font-weight: 700;
    border-bottom: 2px solid var(--atc-brand-red);
    padding-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
}
.atc-link-action:hover {
    color: var(--atc-brand-red);
}

/* --- Category Grid Section Wrapper --- */
.atc-catgrid-section {
    background-color: #ffffff;
    padding: 8rem 2rem;
    width: 100%;
}
.atc-catgrid-header,
.atc-cat-grid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
.atc-catgrid-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 2rem;
}
@media (min-width: 768px) {
    .atc-catgrid-header {
        flex-direction: row;
        align-items: flex-end;
    }
}
.atc-catgrid-header-left {
    max-width: 42rem;
}
.atc-catgrid-title {
    font-size: 3rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    margin: 0 0 1.5rem;
}
.atc-catgrid-desc {
    color: var(--atc-secondary);
    font-family: var(--atc-font-body);
    line-height: 1.625;
    font-size: 1.125rem;
    margin: 0;
}
/* large item: bigger title, more padding */
.atc-cat-content--large {
    bottom: 2.5rem;
    left: 2.5rem;
}

/* --- Category Grid --- */
.atc-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 in tailwind = 24px */
}
@media (min-width: 768px) {
    .atc-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 800px;
    }
}
/* Mobile fallback heights */
.atc-cat-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px; /* mobile height */
    width: 100%;
}
.atc-cat-item-large  { height: 400px; } 
.atc-cat-item-wide   { height: 300px; }

@media (min-width: 768px) {
    /* Reset mobile heights, let grid rows control stretch */
    .atc-cat-item,
    .atc-cat-item-large,
    .atc-cat-item-wide {
        height: 100% !important; 
        min-height: 100% !important;
    }
    .atc-cat-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .atc-cat-item-wide {
        grid-column: span 2;
    }
}
.atc-cat-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 1s;
}
.atc-cat-item:hover .atc-cat-img {
    transform: scale(1.05);
}
.atc-cat-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    transition: background-color 0.5s;
}
.atc-cat-item:hover .atc-cat-overlay {
    background-color: rgba(0, 84, 166, 0.2);
}
.atc-cat-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
}
.atc-cat-title {
    font-size: 1.5rem;
    font-family: var(--atc-font-serif);
    margin: 0;
}
.atc-cat-title-lg {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}
.atc-cat-subtitle {
    font-family: var(--atc-font-label);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.625rem;
    margin: 0;
}
/* Only show border when there is actual text */
.atc-cat-subtitle:not(:empty) {
    border-left: 1px solid var(--atc-brand-red);
    padding-left: 0.75rem;
}

/* --- Featured Projects --- */
.atc-projects-list {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    max-width: 80rem;
    margin: 0 auto;
}
.atc-project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}
@media (min-width: 768px) {
    .atc-project-item {
        flex-direction: row;
    }
    .atc-project-item.reverse {
        flex-direction: row-reverse;
    }
}
.atc-project-img-wrap {
    width: 100%;
    position: relative;
}
@media (min-width: 768px) {
    .atc-project-img-wrap {
        width: 60%;
    }
}
.atc-project-decorator-top {
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    border-left: 2px solid var(--atc-brand-red);
    border-top: 2px solid var(--atc-brand-red);
    z-index: -1;
}
.atc-project-decorator-bottom {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    border-right: 2px solid var(--atc-brand-red);
    border-bottom: 2px solid var(--atc-brand-red);
    z-index: -1;
}
.atc-project-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.atc-project-info {
    width: 100%;
}
@media (min-width: 768px) {
    .atc-project-info {
        width: 40%;
    }
}
.atc-project-cat {
    color: var(--atc-brand-red);
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.atc-project-title {
    font-size: 2.25rem;
    font-family: var(--atc-font-serif);
    margin-bottom: 2rem;
    color: var(--atc-brand-blue);
    line-height: 1.25;
}
.atc-project-desc {
    color: var(--atc-secondary);
    line-height: 1.625;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}
.atc-btn-arrow {
    display: flex;
    align-items: center;
    color: var(--atc-brand-blue);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    gap: 0.75rem;
}
.atc-btn-arrow i {
    color: var(--atc-brand-red);
    transition: transform 0.3s;
}
.atc-btn-arrow:hover i {
    transform: translateX(0.5rem);
}

/* --- Why Choose Us --- */
.atc-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .atc-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.atc-feature-card {
    padding: 3rem;
    background-color: white;
    border: 1px solid #f3f4f6;
    transition: all 0.5s;
}
.atc-feature-card:hover {
    border-color: var(--atc-brand-blue);
}
.atc-feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 84, 166, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--atc-brand-blue);
    margin-bottom: 2rem;
    transition: background-color 0.5s, color 0.5s;
    font-size: 1.5rem; /* For inner i/icon */
}
.atc-feature-card:hover .atc-feature-icon {
    background-color: var(--atc-brand-red);
    color: white;
}
.atc-feature-title {
    font-size: 1.5rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    margin-bottom: 1.5rem;
}
.atc-feature-desc {
    color: var(--atc-secondary);
    font-family: var(--atc-font-body);
    line-height: 1.625;
}

/* --- About Us --- */
.atc-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    max-width: 80rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .atc-about {
        flex-direction: row;
    }
}
.atc-about-img-col {
    width: 100%;
    position: relative;
}
@media(min-width: 768px) {
    .atc-about-img-col {
        width: 50%;
    }
}
.atc-about-decorator {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(227, 29, 36, 0.2);
    z-index: -1;
}
.atc-about-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.atc-about-info-col {
    width: 100%;
}
@media(min-width: 768px) {
    .atc-about-info-col {
        width: 50%;
    }
}
.atc-about-label {
    color: var(--atc-brand-red);
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}
.atc-about-title {
    font-size: 3rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.atc-about-desc-lg {
    color: var(--atc-secondary);
    font-family: var(--atc-font-body);
    line-height: 1.625;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.atc-about-desc {
    color: var(--atc-secondary);
    font-family: var(--atc-font-body);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}
.atc-about-stats {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 1.5rem;
}
.atc-stat-number {
    font-size: 2.25rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    margin-bottom: 0.25rem;
}
.atc-stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--atc-brand-red);
}

/* --- News & Blog --- */
.atc-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .atc-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.atc-blog-card {
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.atc-blog-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 4 / 3;
}
.atc-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.atc-blog-card:hover .atc-blog-img {
    transform: scale(1.1);
}
.atc-blog-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--atc-brand-red);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.atc-blog-title {
    font-size: 1.5rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    margin-bottom: 1rem;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.atc-blog-card:hover .atc-blog-title {
    color: var(--atc-brand-red);
}
.atc-blog-excerpt {
    color: var(--atc-secondary);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.atc-blog-readmore {
    display: inline-flex;
    align-items: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--atc-brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.atc-blog-card:hover .atc-blog-readmore {
    color: var(--atc-brand-red);
}
.atc-blog-readmore i {
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* --- Footer --- */
.atc-footer {
    background: linear-gradient(135deg, #003a73 0%, #0054a6 100%);
    color: white;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 4rem;
    border-top: 4px solid var(--atc-brand-red);
    position: relative;
    overflow: hidden;
}
.atc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.atc-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0 3rem;
    max-width: 80rem;
    margin: 0 auto 5rem auto;
}
@media (min-width: 768px) {
    .atc-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.atc-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.atc-footer-brand img:not([src]), 
.atc-footer-brand img[src=""] {
    display: none !important;
}
.atc-footer-brand img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}
.atc-footer-brand-text {
    font-size: 1.5rem;
    font-family: var(--atc-font-serif);
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
    border-left: 3px solid var(--atc-brand-red);
    padding-left: 1rem;
}
.atc-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}
.atc-footer-social {
    display: flex;
    gap: 1rem;
}
.atc-footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.atc-footer-social a:hover {
    background-color: var(--atc-brand-red);
    border-color: var(--atc-brand-red);
}
.atc-footer-heading {
    font-family: var(--atc-font-serif);
    font-size: 1.25rem;
    border-bottom: 1px solid var(--atc-brand-red);
    padding-bottom: 0.75rem;
    display: inline-block;
    margin-bottom: 2rem;
}
.atc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.atc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s;
}
.atc-footer-links a:hover {
    color: var(--atc-brand-red);
}
.atc-footer-map {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem;
    filter: grayscale(100%);
    transition: filter 0.7s;
    margin-bottom: 1rem;
}
.atc-footer-map:hover {
    filter: grayscale(0%);
}
.atc-footer-map img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
}
.atc-footer-address {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.atc-footer-contact-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    line-height: 1.4;
}
.atc-footer-contact-item .material-symbols-outlined {
    font-size: 1.125rem;
    color: #ff4d4d; /* Slightly brighter red for visibility on blue */
    flex-shrink: 0;
    margin-top: 0.05rem;
}
.atc-footer-contact-item div {
    font-family: var(--atc-font-body);
}
.atc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .atc-footer-bottom {
        flex-direction: row;
    }
}
.atc-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.atc-footer-legal {
    display: flex;
    gap: 2rem;
}
.atc-footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.atc-footer-legal a:hover {
    color: var(--atc-brand-red);
}

/* Generic Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-24 { margin-bottom: 6rem; }
.mb-6 { margin-bottom: 1.5rem; }
.block { display: block; }

/* --- Why Choose Us --- */
.atc-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .atc-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.atc-feature-card {
    background-color: white;
    padding: 3rem;
    border: 1px solid #f3f4f6;
    transition: all 0.5s;
    text-align: left;
}
.atc-feature-card:hover {
    border-color: var(--atc-brand-blue);
    box-shadow: 0 10px 30px -10px rgba(0, 84, 166, 0.1);
}
.atc-feature-icon {
    width: 4rem !important;
    height: 4rem !important;
    background-color: rgba(0, 84, 166, 0.05) !important; /* brand-blue/5 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--atc-brand-blue) !important;
    margin-bottom: 2rem !important;
    transition: all 0.5s;
}
.atc-feature-card:hover .atc-feature-icon {
    background-color: var(--atc-brand-red) !important;
    color: white !important;
}
.atc-feature-icon i,
.atc-feature-icon svg {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 2rem !important;
    display: block !important;
}
.atc-feature-title {
    font-size: 1.5rem;
    font-family: var(--atc-font-serif);
    color: var(--atc-brand-blue);
    margin-bottom: 1.5rem;
}
.atc-feature-desc {
    color: var(--atc-secondary);
    line-height: 1.625;
    margin: 0;
}
